Summary
Updating existing tag
Description
Updating existing tag
Route
POST /tags/update
Roles
admin
other
readonly
apiread
engineering
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
tag |
object |
yes |
Tag object |
Copied to Clipboard
{
"tag": {
"_id": "5c8fa48dd8e04500b1b2f28c",
"description": "Descriptions can be empty",
"name": "My Tag"
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"tag": {
"type": "object",
"title": "tag",
"properties": {
"_id": {
"type": "string",
"examples": [
"5c8fa48dd8e04500b1b2f28c"
]
},
"description": {
"type": "string",
"examples": [
"Descriptions can be empty"
]
},
"name": {
"type": "string",
"examples": [
"My Tag"
]
}
}
}
},
"required": [
"tag"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
results |
object |
Updated tag data |
Copied to Clipboard
{
"_id": "5c8fa48dd8e04500b1b2f28c",
"description": "Descriptions can be empty",
"name": "My Tag"
}