Create Page

POST /v2/partner/pages

Required scopes

partner:pages:write

Tokens missing any required scope return 401 scope_missing. See Auth & Scopes for issuance.

Operation

Operation ID createPage
Tags Campaigns

Parameters

Name In Type Description
Idempotency-Key header string Per `00-conventions.md` §7. Client-generated UUID v4 recommended.

Request body

Required

object
FieldTypeDescription
id *idUUID v4.
type *enum (1)
page
template_id *idUUID v4.
name *string
page_index *integer
kind *enum (5)
contentenrollmentsurveycompletionlanding
is_archived *boolean
inserted_at *updated_atRFC 3339 / ISO 8601 timestamp.
updated_at *updated_atRFC 3339 / ISO 8601 timestamp.
content_block_ids *id[]

Responses

201
Created
object
FieldTypeDescription
id *idUUID v4.
type *enum (1)
page
template_id *idUUID v4.
name *string
page_index *integer
kind *enum (5)
contentenrollmentsurveycompletionlanding
is_archived *boolean
inserted_at *updated_atRFC 3339 / ISO 8601 timestamp.
updated_at *updated_atRFC 3339 / ISO 8601 timestamp.
content_block_ids *id[]

Example request

POST https://api.digitalonboarding.com/v2/partner/pages
Authorization: Bearer <partner-token>
Content-Type: application/json
Idempotency-Key: <uuid-v4>

{ /* request body matching schema above */ }