Skip to content

Activate Tag

This endpoint activates Tag. Tag is active by default, so you shouldn’t make this request unless the Tag is inactive.

POST https://adelion.com/api/tag/activate
ParameterTypeDescriptionRequirement
IdintTag ID.required
JSON payload example
{
"Tag": {
"Id": 1
}
}
Success JSON
{
"Status": "Ok",
"Tag": {
"Id": 1,
"TeamId": 1,
"Name": "Tag 1",
"Status": 0,
"StatusString": "Active"
}
}
Error JSON
{
"Status": "Error",
"Error": "[error description]"
}
CodeStatusMeaning
400Bad RequestYou sent a body that isn’t JSON.
401UnauthorizedYour access token is invalid.
406Not AcceptableOne or more JSON values are missing or malformed, or the requested object was not found.
500Internal Server ErrorThe server encountered a problem. Try again later.