Skip to main content
POST
/
v1
/
pages
/
{page_id}
/
collections
Create a page collection
curl --request POST \
  --url https://api.domo.com/v1/pages/{page_id}/collections \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "East Sales",
  "description": "East Region team  includes all Eastern states.",
  "cardIds": [
    2535,
    233,
    694
  ]
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

page_id
integer
required

ID of page that contains the page collection

Body

application/json
title
string
description
string
cardIds
integer[]

Response

200

Returns the parameter of success or error based on the page ID being valid.