Get document's tags
GET/documents/:documentId/tags
Get a listing of a document's tags
Request
Path Parameters
documentId stringrequired
Document Identifier
Query Parameters
siteId string
Site Identifier
limit string
Limit Results
Default value:
10
shareKey string
Share Identifier
next string
Next page of results token
previous string
Previous page of results token
Responses
- 200
200 OK
Response Headers
Access-Control-Allow-Origin
string
Access-Control-Allow-Methods
string
Access-Control-Allow-Headers
string
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
next string
Next page of results token
previous string
Previous page of results token
tags
object[]
List of tags
insertedDate string
Inserted Timestamp
documentId string
Document Identifier
type string
Tag type
userId string
User who added document
value string
Tag value
values string[]
Tag values
key string
Tag key
{
"next": "string",
"previous": "string",
"tags": [
{
"insertedDate": "string",
"documentId": "string",
"type": "string",
"userId": "string",
"value": "string",
"values": [
"string"
],
"key": "string"
}
]
}
Loading...