GET /api/dms/objects/{objectId}/tags

As of Versionproduct version 2020 Summer | component version 2020 Summer
Request MethodGET
Response FormatJSON
Required Permissionaction read
>> Roles and Role Sets
Description

To retrieve the tags of a DMS object, send the request with the ID of the DMS object as objectId.

Request Example

/api/dms/objects/insert-objectid-here/tags 

Result Example

The result is a JSON structure representing the following table: 

namestatecreationDatetraceid
tag11002020-02-20T02:20:20.220Z1234567887654321
tag298762019-09-10T09:19:01.109Z8765432112345678
JSON structure of the response table
{
  "objects": [
    {
      "properties": {
        "system:tags": {          
          "value": [
            [
              "tag1",
              100,
              "2020-02-20T02:20:20.220Z",
              "1234567887654321"
            ],
            [
              "tag2",
              9876,
              "2019-09-10T09:19:01.109Z",
              "8765432112345678"
            ]
          ]
        }
      }
    }
  ]
}