List a page of tags where the ID is greater than the optionally supplied fromthisid parameter
Limited to those tags the user can see. Returned in ID order.
GET
/tags/list/{fromthisid}
curl \
-X GET https://YOURSITE.infoodle.com/apiv2/tags/list/4 \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
[
{
"id": 123,
"header_id": 123,
"name": "Tag A",
"public": 1,
"order": 1
}
]
]
Response examples (401)
{
"error": "Unauthorised"
}
Response examples (403)
{
"error": "Invalid Permission"
}