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"
}
'