Tags
Tags
Search for Tags viewable by this user
Filter by Tag Id
Filter by partial Tag
Filter by exact Tag
Filter by isSystem flag
Filter by isRequired flag
Filter by options: 1 = has options (IS NOT NULL), 0 = no options (IS NULL), omit for all
Specifies which field the results are sorted by. Used together with sortDir
Sort direction
successful operation
GET /api/tag HTTP/1.1
Accept: */*
successful operation
[
{
"tagId": 1,
"tag": "text",
"isSystem": 1,
"isRequired": 1,
"options": "text"
}
]Add a new Tag
Tag name
A flag indicating whether value selection on assignment is required
A comma separated string of Tag options
successful operation
Class Tag
The Tag ID
The Tag Name
Flag, whether the tag is a system tag
Flag, whether the tag requires additional values
An array of options assigned to this Tag
POST /api/tag HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 47
"name='text'&isRequired=1&options='text'"successful operation
[
{
"tagId": 1,
"tag": "text",
"isSystem": 1,
"isRequired": 1,
"options": "text"
}
]Get the Tag object specified by the provided tagId
Numeric ID of the Tag to get
successful operation
Class Tag
The Tag ID
The Tag Name
Flag, whether the tag is a system tag
Flag, whether the tag requires additional values
An array of options assigned to this Tag
GET /api/tag/{tagId} HTTP/1.1
Accept: */*
successful operation
{
"tagId": 1,
"tag": "text",
"isSystem": 1,
"isRequired": 1,
"options": "text"
}Edit existing Tag
The Tag ID to Edit
Tag name
A flag indicating whether value selection on assignment is required
A comma separated string of Tag options
successful operation
Class Tag
The Tag ID
The Tag Name
Flag, whether the tag is a system tag
Flag, whether the tag requires additional values
An array of options assigned to this Tag
PUT /api/tag/{tagId} HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 47
"name='text'&isRequired=1&options='text'"successful operation
[
{
"tagId": 1,
"tag": "text",
"isSystem": 1,
"isRequired": 1,
"options": "text"
}
]Get the records for the Tag item usage report
Numeric ID of the Tag to get
Specifies which field the results are sorted by. Used together with sortDir
Sort direction
successful operation
GET /api/tag/usage/{tagId} HTTP/1.1
Accept: */*
successful operation
No content
Last updated
Was this helpful?

