Tags
Element unique identifiers
Returns a dictionary where the key is the element identifier and the value is a list of tags.
GET /api/v1/tags HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
Returns a dictionary where the key is the element identifier and the value is a list of tags.
{
"data": {
"ANY_ADDITIONAL_PROPERTY": [
"text"
]
}
}
List of tags
List of element unique identifiers
Tags were successfully overwritten.
No content
Tags cannot be empty when overwriting. If you want to delete all tags use the DELETE {elementGuid:guid} method.
PUT /api/v1/tags HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 97
{
"elementType": "Process",
"tags": [
"text"
],
"elementGuids": [
"123e4567-e89b-12d3-a456-426614174000"
]
}
No content
List of tags
List of element unique identifiers
Tags were successfully deleted.
No content
DELETE /api/v1/tags HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 97
{
"elementType": "Process",
"tags": [
"text"
],
"elementGuids": [
"123e4567-e89b-12d3-a456-426614174000"
]
}
Tags were successfully deleted.
No content
List of tags
List of element unique identifiers
Tags were successfully added.
No content
PATCH /api/v1/tags HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 97
{
"elementType": "Process",
"tags": [
"text"
],
"elementGuids": [
"123e4567-e89b-12d3-a456-426614174000"
]
}
Tags were successfully added.
No content
Element type
Returns a dictionary where the key is the element identifier and the value is a list of tags.
GET /api/v1/tags/{elementType} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
Returns a dictionary where the key is the element identifier and the value is a list of tags.
{
"data": {
"ANY_ADDITIONAL_PROPERTY": [
"text"
]
}
}
All tags were successfully deleted.
No content
DELETE /api/v1/tags/{elementGuid} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
All tags were successfully deleted.
No content
Was this helpful?