v5

OpenAPI 3.1.02026-08-037720751.3 KB
Objects

List views for object

Lists saved views for an object. Results are ordered by view ID (id.view_id ascending).

Required scopes: object_configuration:read.

get/v2/objects/{object}/views

Path parameters

objectstring required

A UUID or slug to identify the object.

Example:people

Query parameters

show_archivedboolean

true to include archived views. See our archiving guide for more information on archiving.

limitinteger

The maximum number of views to return. Must be between 1 and 1000. Defaults to 500.

Example:500
cursorstring

A pagination cursor from a previous response's pagination.next_cursor. Omit for the first page.

Example:eyJkZXNjcmlwdGlvbiI6ICJ0aGlzIGlzIGEgY3Vyc29yIn0=.eM56CGbqZ6G1NHiJchTIkH4vKDr

Response

Success

Example response

{
  "data": [
    {
      "id": {
        "workspace_id": "14beef7a-99f7-4534-a87e-70b564330a4c",
        "object_id": "97052eb9-e65e-443f-a297-f2d9a4a7f795",
        "view_id": "cf7aaeb5-7507-4a84-9c26-9d36e34d7b70"
      },
      "title": "All people",
      "created_at": "2022-11-21T13:22:49.061281000Z"
    }
  ]
}