---
title: "Get page of a guide by ID"
url: "https://earlyaccess.developers.bynder.com/apis/cxuc-1/versions/9a8a4a13-fdd4-455b-8d92-5f16aea67949/operations/getGuidePageByIdApi"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/cxuc-1/versions/9a8a4a13-fdd4-455b-8d92-5f16aea67949.md

# Get page of a guide by ID

`GET` `/api/1/cxuc/guides/{guideId}/pages/{pageId}`

Operation ID: `getGuidePageByIdApi`

## Path parameters

- `guideId` (string, uuid, required)
- `pageId` (string, uuid, required)

## Query parameters

- `skipEnrichmentCalls` (string, optional) - When present, skips asset enrichment calls

## Header parameters

- `Authorization` (string, required)

## Responses

- `200` - Page. - User JWT → classic `Page` - Bynder API token → `PageWithMissingReferences` (headless)
- `206` - Page with some missing asset/collection enrichments (Bynder API token only)
- `401` - Unauthorized
- `403` - Forbidden
- `404` - Guide or page not found

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: CXUC
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}/
paths:
  /api/1/cxuc/guides/{guideId}/pages/{pageId}:
    get:
      operationId: getGuidePageByIdApi
      parameters:
        - in: path
          name: guideId
          required: true
          schema:
            format: uuid
            type: string
        - in: path
          name: pageId
          required: true
          schema:
            format: uuid
            type: string
        - description: When present, skips asset enrichment calls
          in: query
          name: skipEnrichmentCalls
          required: false
          schema:
            type: string
        - in: header
          name: Authorization
          required: true
          schema:
            type: string
      responses:
        "200":
          content:
            application/json:
              schema:
                oneOf:
                  - $ref: "#/components/schemas/Page"
                  - $ref: "#/components/schemas/PageWithMissingReferences"
          description: |
            Page.
            - User JWT → classic `Page`
            - Bynder API token → `PageWithMissingReferences` (headless)
        "206":
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/PageWithMissingReferences"
          description: Page with some missing asset/collection enrichments (Bynder API
            token only)
        "401":
          description: Unauthorized
        "403":
          description: Forbidden
        "404":
          description: Guide or page not found
      summary: Get page of a guide by ID
      tags:
        - Guides
components:
  schemas:
    Page:
      properties:
        canEdit:
          type: boolean
        canView:
          type: boolean
        creationTime:
          type: string
        header:
          properties:
            asset:
              properties:
                assetExtension:
                  type: string
                assetId:
                  type: string
                assetName:
                  type: string
                detailUrl:
                  type: string
                imageUrl:
                  type: string
              title: PageHeaderAsset
              type: object
            backgroundColor:
              type: string
            height:
              type: string
            isSubtitleVisible:
              type: boolean
            isTitleVisible:
              type: boolean
            isVisible:
              type: boolean
            textColorId:
              type: string
          title: PageHeader
          type: object
        id:
          format: uuid
          type: string
        lastModifiedTime:
          type: string
        ownerId:
          type: string
        sections:
          items:
            properties:
              appearance:
                properties:
                  columnSpacing:
                    type: integer
                  contentAlignment:
                    type: string
                  contentSpacing:
                    type: integer
                  height:
                    type: integer
                  paddingBottom:
                    type: integer
                  paddingLeft:
                    type: integer
                  paddingRight:
                    type: integer
                  paddingTop:
                    type: integer
                  width:
                    type: integer
                type: object
              asset:
                properties:
                  detailUrl:
                    type: string
                  extension:
                    type: string
                  id:
                    type: string
                  imageUrl:
                    type: string
                  name:
                    type: string
                type: object
              backgroundColorId:
                type: string
              columns:
                items:
                  properties:
                    _id:
                      type: string
                    widgets:
                      items:
                        oneOf:
                          - properties:
                              assetId:
                                type: string
                              assetName:
                                type: string
                              audioUrl:
                                type: string
                              creationTime:
                                type: string
                              detailUrl:
                                type: string
                              id:
                                type: string
                              lastModifiedTime:
                                type: string
                              style:
                                properties:
                                  language:
                                    type: string
                                  stylesheet:
                                    type: string
                                  version:
                                    type: integer
                                type: object
                              type:
                                const: audio
                                type: string
                            required:
                              - id
                              - type
                              - assetId
                              - assetName
                              - audioUrl
                              - detailUrl
                            title: AudioWidget
                            type: object
                          - properties:
                              buttons:
                                items:
                                  properties:
                                    id:
                                      type: string
                                    link:
                                      properties:
                                        openNewTab:
                                          type: boolean
                                        url:
                                          type: string
                                      type: object
                                    name:
                                      properties:
                                        text:
                                          type: string
                                      type: object
                                    style:
                                      properties:
                                        language:
                                          type: string
                                        stylesheet:
                                          type: string
                                        version:
                                          type: integer
                                      type: object
                                  type: object
                                type: array
                              id:
                                type: string
                              isLegacy:
                                type: boolean
                              link:
                                properties:
                                  openNewTab:
                                    type: boolean
                                  url:
                                    type: string
                                type: object
                              name:
                                properties:
                                  text:
                                    type: string
                                type: object
                              style:
                                properties:
                                  language:
                                    type: string
                                  stylesheet:
                                    type: string
                                  version:
                                    type: integer
                                type: object
                              title:
                                type: string
                              type:
                                const: button
                                type: string
                            required:
                              - id
                              - type
                            title: ButtonWidget
                            type: object
                          - properties:
                              cards:
                                items:
                                  properties:
                                    asset:
                                      properties:
                                        detailUrl:
                                          type: string
                                        extension:
                                          type: string
                                        id:
                                          type: string
                                        imageUrl:
                                          type: string
                                        name:
                                          type: string
                                      type: object
                                    headline:
                                      properties:
                                        description:
                                          type: string
                                        title:
                                          type: string
                                      type: object
                                    id:
                                      type: string
                                    link:
                                      properties:
                                        openNewTab:
                                          type: boolean
                                        url:
                                          type: string
                                      type: object
                                  type: object
                                type: array
                              id:
                                type: string
                              style:
                                properties:
                                  alignment:
                                    type: string
                                  language:
                                    type: string
                                  size:
                                    type: integer
                                  stylesheet:
                                    type: string
                                  version:
                                    type: integer
                                type: object
                              type:
                                const: card
                                type: string
                            required:
                              - id
                              - type
                            title: CardWidget
                            type: object
                          - properties:
                              collectionAssetCount:
                                type: integer
                              collectionAssetsShown:
                                type: integer
                              collectionId:
                                type: string
                              collectionName:
                                type: string
                              collectionPreviews:
                                items:
                                  properties:
                                    assetDetailUrl:
                                      type: string
                                    assetExtension:
                                      type: string
                                    assetId:
                                      type: string
                                    assetImageUrl:
                                      type: string
                                    assetName:
                                      type: string
                                  type: object
                                type: array
                              collectionPublicUrl:
                                type: string
                              collectionSettings:
                                properties:
                                  allowAssetRedirection:
                                    type: boolean
                                  allowCollectionRedirection:
                                    type: boolean
                                  assetsShown:
                                    type: integer
                                  layout:
                                    type: string
                                  showAssetDownload:
                                    type: boolean
                                  showAssetTitle:
                                    type: boolean
                                  showAssetType:
                                    type: boolean
                                  showCollectionDownload:
                                    type: boolean
                                  showOpenAssetInAssetBank:
                                    type: boolean
                                type: object
                              collectionUrl:
                                type: string
                              id:
                                type: string
                              style:
                                properties:
                                  language:
                                    type: string
                                  stylesheet:
                                    type: string
                                  version:
                                    type: integer
                                type: object
                              type:
                                const: collection
                                type: string
                            required:
                              - id
                              - type
                            title: CollectionWidget
                            type: object
                          - properties:
                              colors:
                                items:
                                  properties:
                                    colorCodes:
                                      items:
                                        properties:
                                          key:
                                            type: string
                                          value:
                                            type: string
                                        type: object
                                      type: array
                                    name:
                                      type: string
                                  type: object
                                type: array
                              defaultColorCodes:
                                properties:
                                  cmyk:
                                    type: boolean
                                  hex:
                                    type: boolean
                                  rgb:
                                    type: boolean
                                type: object
                              id:
                                type: string
                              style:
                                properties:
                                  language:
                                    type: string
                                  stylesheet:
                                    type: string
                                  version:
                                    type: integer
                                type: object
                              type:
                                const: color
                                type: string
                            required:
                              - id
                              - type
                            title: ColorPaletteWidget
                            type: object
                          - properties:
                              assetExtension:
                                type: string
                              assetId:
                                type: string
                              assetName:
                                type: string
                              detailUrl:
                                type: string
                              id:
                                type: string
                              imageAction:
                                properties:
                                  openNewTab:
                                    type: boolean
                                  type:
                                    enum:
                                      - LINK_TO_URL
                                      - OPEN_PREVIEW
                                    type: string
                                  url:
                                    type: string
                                type: object
                              imageUrl:
                                type: string
                              style:
                                properties:
                                  language:
                                    type: string
                                  stylesheet:
                                    type: string
                                  version:
                                    type: integer
                                type: object
                              type:
                                const: image
                                type: string
                            required:
                              - id
                              - type
                            title: ImageWidget
                            type: object
                          - properties:
                              divider:
                                type: string
                              height:
                                type: number
                              id:
                                type: string
                              style:
                                properties:
                                  language:
                                    type: string
                                  stylesheet:
                                    type: string
                                  version:
                                    type: integer
                                type: object
                              type:
                                const: spacing
                                type: string
                            required:
                              - id
                              - type
                            title: SpacingWidget
                            type: object
                          - properties:
                              document:
                                type: string
                              html:
                                type: string
                              id:
                                type: string
                              type:
                                const: tea
                                type: string
                            required:
                              - id
                              - type
                            title: TeaWidget
                            type: object
                          - properties:
                              assetId:
                                type: string
                              assetName:
                                type: string
                              autoplay:
                                type: boolean
                              controls:
                                type: boolean
                              coverUrl:
                                type: string
                              detailUrl:
                                type: string
                              id:
                                type: string
                              loop:
                                type: boolean
                              muted:
                                type: boolean
                              style:
                                properties:
                                  language:
                                    type: string
                                  stylesheet:
                                    type: string
                                  version:
                                    type: integer
                                type: object
                              type:
                                const: video
                                type: string
                              videoUrl:
                                type: string
                            required:
                              - id
                              - type
                            title: VideoWidget
                            type: object
                          - properties:
                              id:
                                type: string
                              settings:
                                properties:
                                  controls:
                                    type: boolean
                                  footer:
                                    type: boolean
                                  theme:
                                    type: string
                                type: object
                              sourceId:
                                type: string
                              style:
                                properties:
                                  language:
                                    type: string
                                  stylesheet:
                                    type: string
                                  version:
                                    type: integer
                                type: object
                              type:
                                const: figma
                                type: string
                            required:
                              - id
                              - type
                            title: FigmaWidget
                            type: object
                          - properties:
                              id:
                                type: string
                              settings:
                                properties:
                                  linkToSource:
                                    type: boolean
                                  showSidebar:
                                    type: boolean
                                  showToolbar:
                                    type: boolean
                                type: object
                              source:
                                properties:
                                  args:
                                    type: string
                                  fileType:
                                    type: string
                                  globals:
                                    type: string
                                  resourcePath:
                                    type: string
                                  sourceId:
                                    type: string
                                type: object
                              style:
                                properties:
                                  language:
                                    type: string
                                  stylesheet:
                                    type: string
                                  version:
                                    type: integer
                                type: object
                              type:
                                const: storybook
                                type: string
                            required:
                              - id
                              - type
                            title: StorybookWidget
                            type: object
                          - properties:
                              id:
                                type: string
                              settings:
                                properties:
                                  autoplay:
                                    type: boolean
                                  detailsShown:
                                    type: boolean
                                  loop:
                                    type: boolean
                                type: object
                              sourceId:
                                type: string
                              style:
                                properties:
                                  language:
                                    type: string
                                  stylesheet:
                                    type: string
                                  version:
                                    type: integer
                                type: object
                              type:
                                const: vimeo
                                type: string
                            required:
                              - id
                              - type
                            title: VimeoWidget
                            type: object
                          - properties:
                              id:
                                type: string
                              settings:
                                properties:
                                  autoplay:
                                    type: boolean
                                  controls:
                                    type: boolean
                                  loop:
                                    type: boolean
                                type: object
                              sourceId:
                                type: string
                              style:
                                properties:
                                  language:
                                    type: string
                                  stylesheet:
                                    type: string
                                  version:
                                    type: integer
                                type: object
                              type:
                                const: youtube
                                type: string
                            required:
                              - id
                              - type
                            title: YoutubeWidget
                            type: object
                          - description: Deprecated widget type.
                            properties:
                              id:
                                type: string
                              table:
                                properties:
                                  properties:
                                    properties:
                                      numColumns:
                                        type: integer
                                      numRows:
                                        type: integer
                                    type: object
                                  rows:
                                    items:
                                      properties:
                                        cells:
                                          items:
                                            properties:
                                              content:
                                                oneOf:
                                                  - type: string
                                                  - description: DraftJS rich content object
                                                    properties:
                                                      blocks:
                                                        type: array
                                                      entityMap:
                                                        type: object
                                                    type: object
                                              properties:
                                                properties:
                                                  numColumns:
                                                    type: integer
                                                  numRows:
                                                    type: integer
                                                type: object
                                            type: object
                                          type: array
                                      type: object
                                    type: array
                                type: object
                              type:
                                const: table
                                type: string
                            required:
                              - id
                              - type
                            title: TableWidget
                            type: object
                          - description: Deprecated widget type.
                            properties:
                              id:
                                type: string
                              text:
                                oneOf:
                                  - type: string
                                  - description: DraftJS rich content object
                                    properties:
                                      blocks:
                                        type: array
                                      entityMap:
                                        type: object
                                    type: object
                              type:
                                const: text
                                type: string
                            required:
                              - id
                              - type
                            title: TextWidget
                            type: object
                          - description: Deprecated widget type.
                            properties:
                              id:
                                type: string
                              title:
                                oneOf:
                                  - type: string
                                  - description: DraftJS rich content object
                                    properties:
                                      blocks:
                                        type: array
                                      entityMap:
                                        type: object
                                    type: object
                              type:
                                const: title
                                type: string
                            required:
                              - id
                              - type
                            title: TitleWidget
                            type: object
                        properties:
                          creationTime:
                            type: string
                          id:
                            type: string
                          lastModifiedTime:
                            type: string
                          type:
                            enum:
                              - audio
                              - button
                              - card
                              - collection
                              - color
                              - figma
                              - image
                              - spacing
                              - tea
                              - video
                              - storybook
                              - vimeo
                              - youtube
                              - table
                              - text
                              - title
                            type: string
                        title: Widget
                        type: object
                      type: array
                  title: Column
                  type: object
                type: array
              creationTime:
                type: string
              id:
                type: string
              lastModifiedTime:
                type: string
              sectionLayout:
                enum:
                  - SINGLE
                  - DOUBLE_50_50
                  - DOUBLE_66_33
                  - DOUBLE_33_66
                  - TRIPLE_33_33_33
                type: string
              sectionWidth:
                type: integer
              style:
                properties:
                  language:
                    type: string
                  stylesheet:
                    type: string
                  version:
                    type: integer
                type: object
            title: Section
            type: object
          type: array
        shared:
          type: boolean
        state:
          enum:
            - DRAFT
            - PUBLISHED
          title: PageState
          type: string
        tableOfContents:
          properties:
            isVisibleInGuide:
              type: boolean
            isVisibleInPage:
              type: boolean
          title: TableOfContents
          type: object
        title:
          type: string
        visibility:
          $ref: "#/components/schemas/Visibility"
      title: Page
      type: object
    PageWithMissingReferences:
      properties:
        missingAssetIds:
          items:
            type: string
          type: array
        missingCollectionIds:
          items:
            type: string
          type: array
        page:
          properties:
            creationTime:
              type: string
            header:
              properties:
                asset:
                  $ref: "#/components/schemas/AssetDto"
              title: PageHeaderHeadless
              type: object
            id:
              format: uuid
              type: string
            lastModifiedTime:
              type: string
            ownerId:
              type: string
            sections:
              items:
                properties:
                  asset:
                    $ref: "#/components/schemas/AssetDto"
                  columns:
                    items:
                      properties:
                        id:
                          type: string
                        widgets:
                          items:
                            description: Widget in headless (Bynder API token) response. Deprecated
                              text/title/table widgets and tea widgets all
                              serialize as type 'text'.
                            oneOf:
                              - properties:
                                  asset:
                                    description: Bynder asset. All fields optional except id.
                                    properties:
                                      archive:
                                        type: boolean
                                      brandId:
                                        type: string
                                      copyright:
                                        type: string
                                      dateCreated:
                                        type: string
                                      dateModified:
                                        type: string
                                      datePublished:
                                        type: string
                                      description:
                                        type: string
                                      extension:
                                        items:
                                          type: string
                                        type: array
                                      fileSize:
                                        type: integer
                                      height:
                                        type: integer
                                      id:
                                        type: string
                                      idHash:
                                        type: string
                                      isPublic:
                                        type: boolean
                                      mediaItems:
                                        items:
                                          properties:
                                            name:
                                              type: string
                                            publicUrl:
                                              type: string
                                            type:
                                              type: string
                                          type: object
                                        type: array
                                      name:
                                        type: string
                                      orientation:
                                        type: string
                                      original:
                                        type: string
                                      tags:
                                        items:
                                          type: string
                                        type: array
                                      thumbnails:
                                        properties:
                                          mini:
                                            type: string
                                          thul:
                                            type: string
                                          webimage:
                                            type: string
                                        type: object
                                      transformBaseUrl:
                                        type: string
                                      type:
                                        type: string
                                      watermarked:
                                        type: boolean
                                      width:
                                        type: integer
                                    required:
                                      - id
                                    type: object
                                  creationTime:
                                    type: string
                                  id:
                                    type: string
                                  lastModifiedTime:
                                    type: string
                                  type:
                                    const: audio
                                    type: string
                                required:
                                  - id
                                  - type
                                title: AudioWidgetHeadless
                                type: object
                              - properties:
                                  buttons:
                                    items:
                                      properties:
                                        id:
                                          type: string
                                        link:
                                          properties:
                                            openNewTab:
                                              type: boolean
                                            url:
                                              type: string
                                          type: object
                                        name:
                                          properties:
                                            text:
                                              type: string
                                          type: object
                                      type: object
                                    type: array
                                  creationTime:
                                    type: string
                                  id:
                                    type: string
                                  isLegacy:
                                    type: boolean
                                  lastModifiedTime:
                                    type: string
                                  type:
                                    const: button
                                    type: string
                                required:
                                  - id
                                  - type
                                title: ButtonWidgetHeadless
                                type: object
                              - properties:
                                  cards:
                                    items:
                                      properties:
                                        asset:
                                          description: Bynder asset. All fields optional except id.
                                          properties:
                                            archive:
                                              type: boolean
                                            brandId:
                                              type: string
                                            copyright:
                                              type: string
                                            dateCreated:
                                              type: string
                                            dateModified:
                                              type: string
                                            datePublished:
                                              type: string
                                            description:
                                              type: string
                                            extension:
                                              items:
                                                type: string
                                              type: array
                                            fileSize:
                                              type: integer
                                            height:
                                              type: integer
                                            id:
                                              type: string
                                            idHash:
                                              type: string
                                            isPublic:
                                              type: boolean
                                            mediaItems:
                                              items:
                                                properties:
                                                  name:
                                                    type: string
                                                  publicUrl:
                                                    type: string
                                                  type:
                                                    type: string
                                                type: object
                                              type: array
                                            name:
                                              type: string
                                            orientation:
                                              type: string
                                            original:
                                              type: string
                                            tags:
                                              items:
                                                type: string
                                              type: array
                                            thumbnails:
                                              properties:
                                                mini:
                                                  type: string
                                                thul:
                                                  type: string
                                                webimage:
                                                  type: string
                                              type: object
                                            transformBaseUrl:
                                              type: string
                                            type:
                                              type: string
                                            watermarked:
                                              type: boolean
                                            width:
                                              type: integer
                                          required:
                                            - id
                                          type: object
                                        headline:
                                          properties:
                                            description:
                                              type: string
                                            title:
                                              type: string
                                          type: object
                                        id:
                                          type: string
                                        link:
                                          properties:
                                            openNewTab:
                                              type: boolean
                                            url:
                                              type: string
                                          type: object
                                      type: object
                                    type: array
                                  creationTime:
                                    type: string
                                  id:
                                    type: string
                                  lastModifiedTime:
                                    type: string
                                  type:
                                    const: card
                                    type: string
                                required:
                                  - id
                                  - type
                                title: CardWidgetHeadless
                                type: object
                              - properties:
                                  collection:
                                    properties:
                                      IsPublic:
                                        type: boolean
                                      collectionCount:
                                        type: integer
                                      cover:
                                        properties:
                                          large:
                                            type: string
                                          thumbnail:
                                            type: string
                                          thumbnails:
                                            items:
                                              type: string
                                            type: array
                                        type: object
                                      dateCreated:
                                        type: string
                                      dateModified:
                                        type: string
                                      description:
                                        type: string
                                      filename:
                                        type: string
                                      id:
                                        type: string
                                      name:
                                        type: string
                                      user:
                                        properties:
                                          id:
                                            type: string
                                          name:
                                            type: string
                                        type: object
                                      userId:
                                        type: string
                                    type: object
                                  creationTime:
                                    type: string
                                  id:
                                    type: string
                                  lastModifiedTime:
                                    type: string
                                  type:
                                    const: collection
                                    type: string
                                required:
                                  - id
                                  - type
                                title: CollectionWidgetHeadless
                                type: object
                              - properties:
                                  colors:
                                    items:
                                      properties:
                                        colorCodes:
                                          items:
                                            properties:
                                              key:
                                                type: string
                                              value:
                                                type: string
                                            type: object
                                          type: array
                                        name:
                                          type: string
                                      type: object
                                    type: array
                                  creationTime:
                                    type: string
                                  id:
                                    type: string
                                  lastModifiedTime:
                                    type: string
                                  type:
                                    const: color
                                    type: string
                                required:
                                  - id
                                  - type
                                title: ColorPaletteWidgetHeadless
                                type: object
                              - properties:
                                  asset:
                                    description: Bynder asset. All fields optional except id.
                                    properties:
                                      archive:
                                        type: boolean
                                      brandId:
                                        type: string
                                      copyright:
                                        type: string
                                      dateCreated:
                                        type: string
                                      dateModified:
                                        type: string
                                      datePublished:
                                        type: string
                                      description:
                                        type: string
                                      extension:
                                        items:
                                          type: string
                                        type: array
                                      fileSize:
                                        type: integer
                                      height:
                                        type: integer
                                      id:
                                        type: string
                                      idHash:
                                        type: string
                                      isPublic:
                                        type: boolean
                                      mediaItems:
                                        items:
                                          properties:
                                            name:
                                              type: string
                                            publicUrl:
                                              type: string
                                            type:
                                              type: string
                                          type: object
                                        type: array
                                      name:
                                        type: string
                                      orientation:
                                        type: string
                                      original:
                                        type: string
                                      tags:
                                        items:
                                          type: string
                                        type: array
                                      thumbnails:
                                        properties:
                                          mini:
                                            type: string
                                          thul:
                                            type: string
                                          webimage:
                                            type: string
                                        type: object
                                      transformBaseUrl:
                                        type: string
                                      type:
                                        type: string
                                      watermarked:
                                        type: boolean
                                      width:
                                        type: integer
                                    required:
                                      - id
                                    type: object
                                  creationTime:
                                    type: string
                                  id:
                                    type: string
                                  lastModifiedTime:
                                    type: string
                                  type:
                                    const: image
                                    type: string
                                required:
                                  - id
                                  - type
                                title: ImageWidgetHeadless
                                type: object
                              - properties:
                                  creationTime:
                                    type: string
                                  id:
                                    type: string
                                  lastModifiedTime:
                                    type: string
                                  type:
                                    const: spacing
                                    type: string
                                required:
                                  - id
                                  - type
                                title: SpacingWidgetHeadless
                                type: object
                              - description: Deprecated. Covers text, title, table, and tea widget types in
                                  headless responses. All four serialize as type
                                  'text' with rendered HTML content.
                                properties:
                                  creationTime:
                                    type: string
                                  html:
                                    description: Rendered HTML content.
                                    type: string
                                  id:
                                    type: string
                                  lastModifiedTime:
                                    type: string
                                  type:
                                    const: text
                                    type: string
                                required:
                                  - id
                                  - type
                                title: TextWidgetHeadless
                                type: object
                              - properties:
                                  asset:
                                    description: Bynder asset. All fields optional except id.
                                    properties:
                                      archive:
                                        type: boolean
                                      brandId:
                                        type: string
                                      copyright:
                                        type: string
                                      dateCreated:
                                        type: string
                                      dateModified:
                                        type: string
                                      datePublished:
                                        type: string
                                      description:
                                        type: string
                                      extension:
                                        items:
                                          type: string
                                        type: array
                                      fileSize:
                                        type: integer
                                      height:
                                        type: integer
                                      id:
                                        type: string
                                      idHash:
                                        type: string
                                      isPublic:
                                        type: boolean
                                      mediaItems:
                                        items:
                                          properties:
                                            name:
                                              type: string
                                            publicUrl:
                                              type: string
                                            type:
                                              type: string
                                          type: object
                                        type: array
                                      name:
                                        type: string
                                      orientation:
                                        type: string
                                      original:
                                        type: string
                                      tags:
                                        items:
                                          type: string
                                        type: array
                                      thumbnails:
                                        properties:
                                          mini:
                                            type: string
                                          thul:
                                            type: string
                                          webimage:
                                            type: string
                                        type: object
                                      transformBaseUrl:
                                        type: string
                                      type:
                                        type: string
                                      watermarked:
                                        type: boolean
                                      width:
                                        type: integer
                                    required:
                                      - id
                                    type: object
                                  creationTime:
                                    type: string
                                  id:
                                    type: string
                                  lastModifiedTime:
                                    type: string
                                  type:
                                    const: video
                                    type: string
                                required:
                                  - id
                                  - type
                                title: VideoWidgetHeadless
                                type: object
                              - properties:
                                  creationTime:
                                    type: string
                                  id:
                                    type: string
                                  lastModifiedTime:
                                    type: string
                                  sourceId:
                                    type: string
                                  type:
                                    const: figma
                                    type: string
                                required:
                                  - id
                                  - type
                                title: FigmaWidgetHeadless
                                type: object
                              - properties:
                                  creationTime:
                                    type: string
                                  id:
                                    type: string
                                  lastModifiedTime:
                                    type: string
                                  source:
                                    properties:
                                      args:
                                        type: string
                                      fileType:
                                        type: string
                                      globals:
                                        type: string
                                      resourcePath:
                                        type: string
                                      sourceId:
                                        type: string
                                    type: object
                                  type:
                                    const: storybook
                                    type: string
                                required:
                                  - id
                                  - type
                                title: StorybookWidgetHeadless
                                type: object
                              - properties:
                                  creationTime:
                                    type: string
                                  id:
                                    type: string
                                  lastModifiedTime:
                                    type: string
                                  sourceId:
                                    type: string
                                  type:
                                    const: vimeo
                                    type: string
                                required:
                                  - id
                                  - type
                                title: VimeoWidgetHeadless
                                type: object
                              - properties:
                                  creationTime:
                                    type: string
                                  id:
                                    type: string
                                  lastModifiedTime:
                                    type: string
                                  sourceId:
                                    type: string
                                  type:
                                    const: youtube
                                    type: string
                                required:
                                  - id
                                  - type
                                title: YoutubeWidgetHeadless
                                type: object
                            properties:
                              creationTime:
                                type: string
                              id:
                                type: string
                              lastModifiedTime:
                                type: string
                              type:
                                enum:
                                  - audio
                                  - button
                                  - card
                                  - collection
                                  - color
                                  - figma
                                  - image
                                  - spacing
                                  - text
                                  - video
                                  - storybook
                                  - vimeo
                                  - youtube
                                type: string
                            title: WidgetHeadless
                            type: object
                          type: array
                      title: ColumnHeadless
                      type: object
                    type: array
                  creationTime:
                    type: string
                  id:
                    type: string
                  lastModifiedTime:
                    type: string
                  sectionLayout:
                    enum:
                      - SINGLE
                      - DOUBLE_50_50
                      - DOUBLE_66_33
                      - DOUBLE_33_66
                      - TRIPLE_33_33_33
                    type: string
                title: SectionHeadless
                type: object
              type: array
            state:
              $ref: "#/components/schemas/PageState"
            title:
              type: string
            type:
              const: page
              type: string
            visibility:
              $ref: "#/components/schemas/Visibility"
          title: PageHeadless
          type: object
      title: PageWithMissingReferences
      type: object
    Visibility:
      enum:
        - PRIVATE
        - SPECIFIC
        - PORTAL
        - PUBLIC
      title: Visibility
      type: string
    AssetDto:
      description: Bynder asset data. Fields are populated when enrichment is
        available; only id is guaranteed when enrichment was skipped or asset
        was missing.
      properties:
        archive:
          type: boolean
        brandId:
          type: string
        copyright:
          type: string
        dateCreated:
          type: string
        dateModified:
          type: string
        datePublished:
          type: string
        description:
          type: string
        extension:
          items:
            type: string
          type: array
        fileSize:
          type: integer
        height:
          type: integer
        id:
          type: string
        idHash:
          type: string
        isPublic:
          type: boolean
        limited:
          type: boolean
        mediaItems:
          items:
            properties:
              name:
                type: string
              publicUrl:
                type: string
              type:
                type: string
            type: object
          type: array
        name:
          type: string
        orientation:
          type: string
        original:
          type: string
        propertyOptions:
          items:
            type: string
          type: array
        property_limitedrights:
          type: string
        tags:
          items:
            type: string
          type: array
        thumbnails:
          properties:
            mini:
              type: string
            thul:
              type: string
            webimage:
              type: string
          type: object
        transformBaseUrl:
          type: string
        type:
          type: string
        userCreated:
          type: string
        videoPreviewURLs:
          items:
            type: string
          type: array
        watermarked:
          type: boolean
        width:
          type: integer
      title: AssetDto
      type: object
    PageState:
      enum:
        - DRAFT
        - PUBLISHED
      title: PageState
      type: string
```
