It is a method to get user tags.
Principle of use
| Syntax and URL to call the method |
| getTags () |
| https://api.selzy.com/en/api/getTags?format=json&api_key=KEY |
| Arguments | |
| api_key * | API access key. |
| Return value |
JSON array, each element of the array is an object with the id (unique numeric tag identifier) and the name (tag text) fields.Example of the return value:
{
"result":[
{"id":123,"name":"important clients"},
{"id":456,"name":"very important clients"}
]
}
|