Returns all tags used in the workspace. Each tag is associated with the number of contacts tagged with it.
{
"tags":{
"clients":"123",
"friends":"89",
...
}
}
Returns all tags used for the contact.
{
"tags":{
"clients":"clients",
"friends":"friends",
...
}
}
Adds a tag to a person or a company.
{
"tags":"clients,friends"
}
Returns HTTP status code 201 (“Created”) on success. On failure, a non-200 status code will be returned, possibly with error information in JSON format as the response's content.
Removes a tag from a person or a company.
Returns HTTP status code 200 on success, or any other code (and possibly error information in JSON format) on error.