Unshare tags with other users (Called "lists" within the GUI application).
JSON Request Example:
/**
* Tags::UnshareTags
*
* Unshare tags with other users
*
* tags [array, required]: array of one or more tag ids or names
* users [array, required]: array of one or more user names
*/
{
"username": "{*user*}",
"usertoken": "{*token*}",
"requesttype": "Tags",
"requestmethod": "UnshareTags",
"details": {
"tags": ["{*tag-id or tag-name*}", ...],
"users": ["{*user-name*}", ... ]
}
}"json_request" element
| Field Name | Description |
| username | Username used to login to Pinpointe |
| usertoken | Unique token assigned to Pinpointe account |
| requesttype | User |
| requestmethod | UnshareTags |
"details" element
| Field Name | Description |
| tags (required)) | Tag Id or Tag Name of the tag you want to unshare. |
| users (required) | User name you want to unshare tag with |
Successful Response:
"response" element
| Field Name | Description |
| status | Will return SUCCESS if tags were successfully found. |
| data | Message and count of tags that were unshared successfully |
Unsuccessful Response:
"response" element
| Field Name | Description |
| status | Will return FAILED if unsuccessful |
| errormessage | Text explaining why request failed |