v1

latestOpenAPI 3.0.02026-07-26254134307.1 KB
Views

List views

List the views accessible to the authenticated token.

Required scope: views:read

get/views

Query parameters

limitinteger
Example:25

Max number of results per page

page_tokenstring
Example:https://yourCompany.api.frontapp.com/endpoint?limit=25&page_token=92f32bcd7625333caf4e0f8fc26d920c812f

Token to use to request the next page

Response

Array of views

Example response

{
  "_pagination": {
    "next": "https://yourCompany.api.frontapp.com/views?page_token=ce787da6f075740cf187d926f5e9f612bc7875763a8dd37d5"
  },
  "_links": {
    "self": "https://yourCompany.api.frontapp.com/views"
  },
  "_results": [
    {
      "_links": {
        "self": "https://yourCompany.api.frontapp.com/views/lns_abc123",
        "related": {
          "owner": "https://yourCompany.api.frontapp.com/teams/tim_xyz"
        }
      },
      "id": "lns_abc123",
      "name": "High Priority Support",
      "highlight": "pink"
    }
  ]
}