Get tag information for the user making the call (Called "lists" within the GUI application).
JSON Request Example:
/**
* Users::GetTags
*
* Get a list of tags owned by the requesting user.
*
* includeshared [bool, optional, default: false]: include shared tags accessible but not owned by user
*/
{
"username": "bob",
"usertoken": "123def",
"requesttype": "Users",
"requestmethod": "GetTags",
"details": {
"includeshared": "{*bool*}"
}
}"json_request" element
| Field Name | Description |
| username | Username used to login to Pinpointe |
| usertoken | Unique token assigned to Pinpointe account |
| requesttype | Users |
| requestmethod | GetTags |
"details" element
| Field Name | Description |
| includeshared (optional, boolean) | include shared tags accessible but not owned by user; default is false |
Successful Response:
"response" element
| Field Name | Description |
| status | Will return SUCCESS if tags were successfully found. |
| data | Detailed information per individual tag found. |
Unsuccessful Response:
"response" element
| Field Name | Description |
| status | Will return FAILED if unsuccessful |
| errormessage | Text explaining why request failed |