Share tags with other users (Called "lists" within the GUI application).
JSON Request Example:
/**
* Tags::ShareTags
*
* Share 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": "bob",
"usertoken": "abc123",
"requesttype": "Tags",
"requestmethod": "ShareTags",
"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 | Users |
| requestmethod | ShareTags |
"details" element
| Field Name | Description |
| tags (required)) | Tag Id or Tag Name of the tag you want to share. |
| users (required) | User name of user you want to share tag with |
Successful Response:
"response" element
| Field Name | Description |
| status | Will return SUCCESS if tags were successfully found. |
| data | Message and count of tags were shared successfully |
Unsuccessful Response:
"response" element
| Field Name | Description |
| status | Will return FAILED if unsuccessful |
| errormessage | Text explaining why request failed |