List a page of tag headers where the ID is greater than the optionally supplied fromthisid parameter

GET /tagheaders/list/{fromthisid}

Limited to those tag headers the user can see. Returned in ID order.

Path parameters

  • fromthisid integer Required

    The ID that is previous to the one to start from e.g. if IDs are 1,2,3 fromthisid as 1 will return 2,3

Responses

  • 200 application/json

    List returned OK

    Hide response attributes Show response attributes object
    • id integer

      Minimum value is 1.

    • name string
    • order integer

      The order this code appears in the list

      Minimum value is 0.

  • 401 application/json

    Authentication unauthorised

    Hide response attribute Show response attribute object
  • 403 application/json

    Invalid permission

    Hide response attribute Show response attribute object
GET /tagheaders/list/{fromthisid}
curl \
 -X GET https://YOURSITE.infoodle.com/apiv2/tagheaders/list/4 \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": 123,
    "name": "Tag A",
    "order": 1
  }
]
Response examples (401)
{
  "error": "Unauthorised"
}
Response examples (403)
{
  "error": "Invalid Permission"
}