Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Page Properties
hiddentrue
idDONE

Product Version
Report Note
Assignee

Resources & Remarks


Modification History

NameDateProduct VersionAction
Antje08 FEB 20212.4New page properties macro.


...

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.A read permission is required.

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


Code Block
titleJSON 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"
            ]
          ]
        }
      }
    }
  ]
}


...