Skip to main content
PUT
/
api
/
content
/
v1
/
pages
/
bulk
/
move
Bulk Move Pages
curl --request PUT \
  --url https://{instance}.domo.com/api/content/v1/pages/bulk/move \
  --header 'Content-Type: application/json' \
  --header 'X-DOMO-Developer-Token: <api-key>' \
  --data '
{
  "pageIds": [
    123,
    456
  ],
  "parentPageId": 789,
  "pagePermission": "ORIGINAL"
}
'

Authorizations

X-DOMO-Developer-Token
string
header
required

Body

application/json
pageIds
integer[]
required

IDs of pages to move

parentPageId
integer
required

ID of the new parent page

pagePermission
enum<string>
required

Permission for the pages

Available options:
ORIGINAL

Response

Success (200): Pages moved successfully.