Retrieves a tag type, or lists tag types.
Parameter | Description |
---|---|
user_key | Your application’s key, from developer.templatecloud.com |
format | json or xml |
/tag_types/<tagtype_id>/
After tag_types/, specify the id of the tag type like this:
GET http://api.templatecloud.com/sandbox/tag_types/2/?user_key=ba386e729c5f6870cea89f38e92d7a5c&format=json
/tag_types/
Retrieves all tag types:
GET http://api.templatecloud.com/sandbox/tag_types/?user_key=ba386e729c5f6870cea89f38e92d7a5c&format=json
{
"tag_types": [
{
"id": "1",
"name": "Industry Types"
},
{
"id": "2",
"name": "Client"
},
etc...
]
}
If one result is returned,
{ "tag_type": { "id": "1", "name": "Industry Types" } }
See also
|
|||
Jump to contents page of
|