Skip to content

Get Tag

Tool name: get-tag

Returns one tag of a KlickTipp account with the context needed to tell what it means: its type, whether it can be written, what it stands for, the entity behind it for tags KlickTipp puts on contacts itself, the internal note and labels of the account, how many contacts carry it, and which tags a contact is subscribed to or unsubscribed from when this tag is assigned. Also says whether this is the tag the app marks test contacts with.

Input schema

tagIdinteger, >= 1required

ID of the tag, as shown in the KlickTipp app URL

accountIdnull or integer, >= 1

User ID of the account; omit for the account the access token works in

Default:null
Input example
{ "tagId": 1, "accountId": null }

Output schema

accountIdintegerrequired
idintegerrequired
namestringrequired
typestringrequired
isWritablebooleanrequired
isTestContactTagbooleanrequired
multiValuebooleanrequired
descriptionstringrequired
notesstringrequired
originNamestring or nullrequired
originIdinteger or nullrequired
metaLabelsArray of stringsrequired
contactCountintegerrequired
subscribesToTagIdsArray of integersrequired
unsubscribesFromTagIdsArray of integersrequired
editUrlstringrequired
Output example
{ "accountId": 0, "id": 0, "name": "string", "type": "string", "isWritable": true, "isTestContactTag": true, "multiValue": true, "description": "string", "notes": "string", "originName": "string", "originId": 0, "metaLabels": [ "string" ], "contactCount": 0, "subscribesToTagIds": [ 0 ], "unsubscribesFromTagIds": [ 0 ], "editUrl": "string" }