Get a specific tag header
Return a specific tag header. Limited to those the user can see
Path parameters
-
Which item to be processed
Minimum value is
0
.
GET
/tagheaders/{id}
curl \
-X GET https://YOURSITE.infoodle.com/apiv2/tagheaders/99 \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": 123,
"name": "Tag A",
"tags": [
{
"id": 123,
"header_id": 123,
"name": "Tag A",
"public": 1,
"order": 1
}
],
"order": 1
}
]
Response examples (401)
{
"error": "Unauthorised"
}
Response examples (403)
{
"error": "Invalid Permission"
}
Response examples (404)
{
"error": "Not Found"
}