Skip to main content
GET
/
v1
/
pages
/
{page_id}
Retrieve a page
curl --request GET \
  --url https://api.domo.com/v1/pages/{page_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "parentId": 123,
  "name": "<string>",
  "locked": true,
  "collectionIds": [
    123
  ],
  "cardIds": [
    123
  ],
  "visibility": {
    "userIds": [
      123
    ],
    "groupIds": [
      123
    ]
  },
  "owners": [
    {
      "id": 123,
      "type": "<string>",
      "displayName": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

page_id
string
required

The ID of the page

Example:

"876655018"

Response

200 - application/json

Returns a page object if valid page ID was provided.

id
integer
required

The ID of the page

parentId
integer

The ID of the page that is higher in organizational hierarchy

name
string

The name of the page

locked
boolean

Determines whether users (besides the page owner) can make updates to page or its content - the default value is false

collectionIds
integer[]

The IDs of collections within a page

cardIds
integer[]

The ID of all cards contained within the page

visibility
object

Determines the access given to both individual users or groups within Domo

owners
object[]

List of IDs of page owners