如何从REST API传递类别属性值

时间:2017-08-17 09:40:42

标签: rest api opentext livelink

我可以通过内容服务器(16.0.3)REST Api (POST: api/v1/nodes)上传文件或创建节点。 但是如何在将文件上传到opentext Content server时传递Category Attribute值..

因为根据DeveloperGuide,我只能传递3个参数

type,parent_id,name

2 个答案:

答案 0 :(得分:1)

要向节点添加类别,需要在Json formate中使用类别,类别属性值传递角色。例如,节点(20589)具有名称为BillingCat(42069)的类别包含ReferenceID(42069_2)然后传递参数如下

  type: 144,
    parent_id: 20589,
    name: file.name,
    roles: {
      categories: {
        {
          '42069': { // category (42069)
            '42069_2': 'ABC23' //attribute value
          }
        }
      }

答案 1 :(得分:0)

看起来你必须在创建节点后发表第二篇文章: POST api / v1 / nodes / {id} / categories

希望这有帮助