CreatorIQ Onesheet API

Onesheets public API

Operations 14

GET /crm/v1/api/onesheets Get Onesheets collection #
POST /crm/v1/api/onesheets Create a new OneSheet #
GET /crm/v1/api/onesheet/{oneSheetId} Get Single Onesheet #
PATCH /crm/v1/api/onesheet/{oneSheetId} Update Onesheet #
DELETE /crm/v1/api/onesheet/{oneSheetId} Delete Onesheet #
GET /crm/v1/api/onesheet/{oneSheetId}/publishers Gets Onesheet's Creators #
POST /crm/v1/api/onesheet/{oneSheetId}/publishers Add Creator to Onesheet #
GET /crm/v1/api/onesheet/{oneSheetId}/publisher/{publisherId} Get a certain Onesheet's Creator #
DELETE /crm/v1/api/onesheet/{oneSheetId}/publisher/{publisherId} Remove creator from one-sheet #
PATCH /crm/v1/api/onesheet/{oneSheetId}/publisher/{publisherId} Update one-sheet creator #
PATCH /crm/v1/api/onesheet/{oneSheetId}/publisher/{publisherId}/approve Approve Creator to Onesheet #
POST /crm/v1/api/onesheet/{oneSheetId}/publisher/{publisherId}/comments Add publisher comment to one-sheet #
POST /crm/v1/api/onesheet/{oneSheetId}/publish Publish one-sheet #
GET /crm/v1/api/view?view=OneSheetBuilder/OneSheetBuilder Get OneSheet Builder #

Documentation

📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/6e239b2598043-creator-iq-crm-publishers-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/550a4dd4b1c4c-creator-iq-crm-publishers-api-v2
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/23bf95a24efdc-creator-iq-campaign-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/1782008e04401-creator-iq-crm-campaigns-api-v2
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/7e7ec9da4e860-creator-iq-reporting-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/01ce2c98ffb66-creator-iq-social-account-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/eb8bcd088eeca-creator-iq-crm-lists-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/38b54f6883f05-creator-iq-crm-onesheets-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/4959b70086ddd-creator-iq-crm-publishers-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/cd253b6f9f728-creator-iq-divisions-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/ff893196191a0-creator-iq-ecommerce-ap-is
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/f8d0b276f1a9d-creator-iq-crm-link-tracking-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/0a94acde695e7-conversion-metrics-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/62c9deaa94659-creator-iq-safe-iq-brand-safety-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/ce6e15986dd02-creator-iq-brand-safety-draft
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/2359b1f62de77-creator-iq-payments-api
📖
Documentation
https://apidocs.creatoriq.com/docs/ciq-api-documentation/052262c05afe6-overview

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/creatoriq-onesheet-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

creatoriq-onesheet-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Creatoriq Onesheet API
  version: 1.0.0
  contact:
    name: CreatorIQ
    url: https://www.creatoriq.com
    email: support@creatoriq.com
  termsOfService: https://www.creatoriq.com/legal/terms-of-use
  description: 'Operations tagged Onesheet across 2 of this provider''s published API definitions: creatoriq-onesheets-openapi.yml, creatoriq-reports-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://apis.creatoriq.com
  description: Live
security:
- apiKey: []
tags:
- name: Onesheet
  description: Onesheets public API
paths:
  /crm/v1/api/onesheets:
    get:
      tags:
      - Onesheet
      summary: Get Onesheets collection
      description: Return a paginated collection of Onesheets
      operationId: getOnesheetsCollection
      parameters:
      - name: page
        in: query
        description: Collection's page to show
        required: false
        schema:
          type: integer
          default: 1
          example: 3
        examples:
          default:
            value: 3
      - name: size
        in: query
        description: Amount of items on the page. Default is 20
        required: false
        schema:
          type: integer
          default: 20
          example: 50
        examples:
          default:
            value: 50
      - name: order
        in: query
        description: Sort order. Default is 'Id,desc'
        required: false
        schema:
          type: string
          default: Id,desc
          example: UpdatedAt,desc
        examples:
          default:
            value: UpdatedAt,desc
      responses:
        '200':
          $ref: '#/components/responses/OneSheetsCollection'
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    post:
      tags:
      - Onesheet
      summary: Create a new OneSheet
      description: Creates a new OneSheet
      operationId: createOnesheet
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateOneSheetBody'
      responses:
        '201':
          $ref: '#/components/responses/OneSheetCreated'
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    servers:
    - url: https://apis.creatoriq.com
      description: Live
  /crm/v1/api/onesheet/{oneSheetId}:
    get:
      tags:
      - Onesheet
      summary: Get Single Onesheet
      description: Return a Onesheet
      operationId: getOnesheet
      parameters:
      - name: oneSheetId
        in: path
        description: OneSheet Id
        required: true
        schema:
          type: integer
          example: 333333
        examples:
          default:
            value: 333333
      responses:
        '200':
          $ref: '#/components/responses/OneSheetSingle'
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    patch:
      tags:
      - Onesheet
      summary: Update Onesheet
      description: Updates Onesheet
      operationId: updateOnesheet
      parameters:
      - name: oneSheetId
        in: path
        description: OneSheet Id
        required: true
        schema:
          type: integer
          example: 333333
        examples:
          default:
            value: 333333
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateOneSheetBody'
      responses:
        '206':
          $ref: '#/components/responses/OneSheetUpdated'
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    delete:
      tags:
      - Onesheet
      summary: Delete Onesheet
      description: Deletes Onesheet
      operationId: deleteOnesheet
      parameters:
      - name: oneSheetId
        in: path
        description: OneSheet Id
        required: true
        schema:
          type: integer
          example: 333333
        examples:
          default:
            value: 333333
      responses:
        '204':
          description: Successfully deleted
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    servers:
    - url: https://apis.creatoriq.com
      description: Live
  /crm/v1/api/onesheet/{oneSheetId}/publishers:
    get:
      tags:
      - Onesheet
      summary: Gets Onesheet's Creators
      description: Gets Onesheet's Creators
      operationId: getCreatorsOfOnesheet
      parameters:
      - name: oneSheetId
        in: path
        description: OneSheet Id
        required: true
        schema:
          type: integer
          example: 333333
        examples:
          default:
            value: 333333
      responses:
        '200':
          $ref: '#/components/responses/OneSheetCreators'
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    post:
      tags:
      - Onesheet
      summary: Add Creator to Onesheet
      description: Adds Creator to Onesheet
      operationId: addCreatorToOnesheet
      parameters:
      - name: oneSheetId
        in: path
        description: OneSheet Id
        required: true
        schema:
          type: integer
          example: 333333
        examples:
          default:
            value: 333333
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddPublisherToOneSheetBody'
      responses:
        '201':
          description: Creator successfully added
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    servers:
    - url: https://apis.creatoriq.com
      description: Live
  /crm/v1/api/onesheet/{oneSheetId}/publisher/{publisherId}:
    get:
      tags:
      - Onesheet
      summary: Get a certain Onesheet's Creator
      description: Gets a certain Onesheet's Creators
      operationId: getOnesheetSingleCreator
      parameters:
      - name: fields
        in: query
        description: \ Data fields to get info for. Default set (when parameter is not set or empty) is "summary,comments,isPostMigrationProcess,demographics,locations,audienceTotal,infoForAdvertisers"
        schema:
          type: string
          example: infoForAdvertisers,isPostMigrationProcess
        examples:
          default:
            value: infoForAdvertisers,isPostMigrationProcess
      - name: oneSheetId
        in: path
        description: OneSheet Id
        required: true
        schema:
          type: integer
          example: 333333
        examples:
          default:
            value: 333333
      - name: publisherId
        in: path
        description: Creator Id
        required: true
        schema:
          type: integer
          example: 642626
        examples:
          default:
            value: 642626
      responses:
        '200':
          $ref: '#/components/responses/OneSheetCreator'
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    delete:
      tags:
      - Onesheet
      summary: Remove creator from one-sheet
      description: Remove creator from one-sheet
      operationId: RemoveCreator
      parameters:
      - name: oneSheetId
        in: path
        description: OneSheet Id
        required: true
        schema:
          type: integer
          example: 333333
        examples:
          default:
            value: 333333
      - name: publisherId
        in: path
        description: Creator Id
        required: true
        schema:
          type: integer
          example: 642626
        examples:
          default:
            value: 642626
      responses:
        '204':
          description: Deleted Successful
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    patch:
      tags:
      - Onesheet
      summary: Update one-sheet creator
      description: Update one-sheet creator
      operationId: UpdateOneSheetCreator
      parameters:
      - name: oneSheetId
        in: path
        description: OneSheet Id
        required: true
        schema:
          type: integer
          example: 333333
        examples:
          default:
            value: 333333
      - name: publisherId
        in: path
        description: Creator Id
        required: true
        schema:
          type: integer
          example: 642626
        examples:
          default:
            value: 642626
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateOneSheetCreatorBody'
      responses:
        '204':
          description: Successful
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    servers:
    - url: https://apis.creatoriq.com
      description: Live
  /crm/v1/api/onesheet/{oneSheetId}/publisher/{publisherId}/approve:
    patch:
      tags:
      - Onesheet
      summary: Approve Creator to Onesheet
      description: Approves Creator to Onesheet
      operationId: approveCreatorToOnesheet
      parameters:
      - name: oneSheetId
        in: path
        description: OneSheet Id
        required: true
        schema:
          type: integer
          example: 333333
        examples:
          default:
            value: 333333
      - name: publisherId
        in: path
        description: Creator Id
        required: true
        schema:
          type: integer
          example: 642626
        examples:
          default:
            value: 642626
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApprovePublisherToOneSheetBody'
      responses:
        '204':
          description: Creator successfully approved
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    servers:
    - url: https://apis.creatoriq.com
      description: Live
  /crm/v1/api/onesheet/{oneSheetId}/publisher/{publisherId}/comments:
    post:
      tags:
      - Onesheet
      summary: Add publisher comment to one-sheet
      description: Add publisher comment to one-sheet
      operationId: AddPublisherComment
      parameters:
      - name: oneSheetId
        in: path
        description: OneSheet Id
        required: true
        schema:
          type: integer
          example: 333333
        examples:
          default:
            value: 333333
      - name: publisherId
        in: path
        description: Creator Id
        required: true
        schema:
          type: integer
          example: 642626
        examples:
          default:
            value: 642626
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddPublisherCommentToOneSheetBody'
      responses:
        '201':
          description: Success
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    servers:
    - url: https://apis.creatoriq.com
      description: Live
  /crm/v1/api/onesheet/{oneSheetId}/publish:
    post:
      tags:
      - Onesheet
      summary: Publish one-sheet
      description: Publish one-sheet
      operationId: PublishOneSheet
      parameters:
      - name: oneSheetId
        in: path
        description: OneSheet Id
        required: true
        schema:
          type: integer
          example: 333333
        examples:
          default:
            value: 333333
      responses:
        '204':
          $ref: '#/components/responses/PublishOneSheet'
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    servers:
    - url: https://apis.creatoriq.com
      description: Live
  /crm/v1/api/view?view=OneSheetBuilder/OneSheetBuilder:
    get:
      tags:
      - Onesheet
      summary: Get OneSheet Builder
      description: Fetch OneSheet Publishers
      operationId: getOneSheetBuilder
      parameters:
      - $ref: '#/components/parameters/section'
      - $ref: '#/components/parameters/take'
      - $ref: '#/components/parameters/skip'
      - $ref: '#/components/parameters/dir'
      - name: requestData[sort][0][field]
        in: query
        description: "Field for sorting can be sorted by \n* SortOrder\n* PublisherName\n* TotalSubscribers\n* CreatedAt\n* UpdatedAt\n* FlagshipSocialNetwork : represents primary social network\n* FlagshipPropertyTitle : represents primary account\n"
        schema:
          type: string
          enum:
          - SortOrder
          - PublisherName
          - TotalSubscribers
          - CreatedAt
          - UpdatedAt
          - FlagshipSocialNetwork
          - FlagshipPropertyTitle
          example: SortOrder
        examples:
          default:
            value: SortOrder
      - name: requestData[sort][0][name]
        in: query
        description: 'Sorting field name

          * SortOrder

          * PublisherName

          * TotalSubscribers

          * CreatedAt

          * UpdatedAt

          * FlagshipSocialNetwork

          * FlagshipPropertyTitle

          '
        schema:
          type: string
          enum:
          - SortOrder
          - PublisherName
          - TotalSubscribers
          - CreatedAt
          - UpdatedAt
          - FlagshipSocialNetwork
          - FlagshipPropertyTitle
          example: SortOrder
        examples:
          default:
            value: SortOrder
      - name: requestData[params][SalesSheetId]
        in: query
        description: OneSheet ID
        schema:
          type: integer
          example: 757214
        examples:
          default:
            value: 757214
      responses:
        '200':
          $ref: '#/components/responses/asyncResponse'
        Result:
          $ref: '#/components/responses/oneSheetBuilder'
      security:
      - apiKey: []
      servers:
      - url: https://apis.creatoriq.com
        description: Live
    servers:
    - url: https://apis.creatoriq.com
      description: Live
components:
  schemas:
    CreateOneSheetBody:
      type: object
      properties:
        Name:
          type: string
          description: Name of OneSheet
          example: Test OneSheet
        TotalReachCalculation:
          type: string
          enum:
          - Selected
          - Full
        templateId:
          type:
          - integer
          - 'null'
          example: 2351
      required:
      - Name
    AddPublisherToOneSheetBody:
      type: object
      properties:
        PublisherIds:
          type: array
          items:
            type: integer
            example: 13201168
      required:
      - PublisherIds
    AddPublisherCommentToOneSheetBody:
      type: object
      properties:
        Email:
          type: string
          description: Publisher comment email
          format: email
          example: test@gmail.com
        CreatedBy:
          type: string
          description: Publisher comment creator
          example: Test Name
        Comment:
          type:
          - string
          - 'null'
          description: Publisher comment
          example: Test comment
        SocialEdgeId:
          type:
          - string
          - 'null'
          description: Publisher comment SocialEdgeId
          example: Test Comment SocialEdgeId
      required:
      - Email
      - CreatedBy
    OneSheetCreatedModel:
      type: object
      properties:
        type:
          type: string
          enum:
          - OneSheet
          description: Type of Search
          example: OneSheet
        href:
          type: string
          description: CreatorIQ API URL to get onesheet
          format: URI
          example: https://apis.creatoriq.com/crm/v1/api/onesheet/99999
        OneSheet:
          type: object
          properties:
            Id:
              type: integer
              example: 4326
            Name:
              type: string
              example: Test OneSheet
            VanityURL:
              type: string
              example: Test_OneSheet_63dcba77c85
            CreatedById:
              type: integer
              example: 10004117
            PartnerId:
              type: integer
              example: 21
            UpdatedAt:
              type: string
              example: '2023-02-03 07:44:01'
            CreatedBy:
              type: string
              example: Test app
            SalesSheetImageURL:
              type:
              - string
              - 'null'
              format: URI
              example: https://s3.us-west-1.amazonaws.com/resources.creatoriq.com/whitelabelling/21_b744bd6c3cd/dark_logo_8dq7maua0m.png
            VanityHost:
              type: string
              format: URI
              example: https://onesheets.creatoriq.com
            Expired:
              type: boolean
              example: false
            TotalReachCalculation:
              type: string
              enum:
              - Selected
              - Full
              example: Full
            TopMetrics:
              type: array
              items:
                type: object
                properties:
                  network:
                    type: string
                    example: web
                  field:
                    type: string
                    example: MonthlyUniqueVisitors
                  label:
                    type: string
                    example: Last 30 Days Uniques
            PublishersCount:
              type: integer
              example: 0
            CommentsCount:
              type: integer
              example: 6
      required:
      - type
      - href
      - OneSheet
    OneSheetUpdatedModel:
      type: object
      properties:
        Id:
          type: integer
          example: 64826
        templateId:
          type:
          - integer
          - 'null'
          example: 2351
      required:
      - Id
      - templateId
    OneSheetInCollection:
      type: object
      properties:
        type:
          type: string
          enum:
          - OneSheet
          description: Type of Search
          example: OneSheet
        href:
          type: string
          description: CreatorIQ API URL to get onesheet-related information
          format: URI
          example: https://apis.creatoriq.com/crm/v1/api/onesheet/99999
        OneSheet:
          type: object
          properties:
            Id:
              type: integer
              example: 395809
            PartnerId:
              type: integer
              example: 21
            Name:
              type: string
              example: LS - Test One-Sheet for 2305 - Stage
            VanityURL:
              type:
              - string
              - 'null'
              example: LS___Test_One_Sheet_for_2305___Stage_63d93cac18e7a
            Data:
              type:
              - string
              - 'null'
              description: JSON string containing OneSheet's data
              example: '{"Sections":{"PersonalData":1}}'
            CreatedBy:
              type: string
              example: New Manager User
            CreatedAt:
              type: string
              example: '2023-01-31 16:07:08'
            UpdatedBy:
              type:
              - string
              - 'null'
              example: New Manager User
            UpdatedAt:
              type: string
              example: '2023-01-31 16:46:50'
            Expired:
              type: boolean
              example: false
            ExpireAt:
              type:
              - string
              - 'null'
              example: '2023-02-28 23:59:00'
            DeleteAt:
              type:
              - string
              - 'null'
              example: null
            ExternalUser:
              type:
              - string
              - 'null'
              example: null
            IsPublished:
              type: integer
              example: 1
            SendNotifications:
              type: integer
              example: 0
            AllowComments:
              type: integer
              enum:
              - 0
              - 1
              example: 1
            NotifyEmails:
              type:
              - string
              - 'null'
              example: test1@test.com,test2@example.com
            SalesSheetImageURL:
              type: string
              format: URI
              example: https://s3.us-west-1.amazonaws.com/resources.creatoriq.com/whitelabelling/fyhte56ste/dark_logo_8dq7maua0m.png
            TopMetrics:
              type: array
              items:
                type: object
                properties:
                  network:
                    type: string
                    example: instagram
                  field:
                    type: string
                    example: Followers
                  label:
                    type: string
                    example: Followers
            CustomOrder:
              type:
              - string
              - 'null'
              example: null
            VanityHost:
              type:
              - string
              - 'null'
              example: http://onesheets.creatoriq.com
            DivisionId:
              type:
              - integer
              - 'null'
              example: null
            CreatedById:
              type: integer
              example: 1000120
            PublishersCount:
              type: integer
              example: 20
            Advertiser:
              type:
              - object
              - 'null'
              properties:
                AdvertiserId:
                  type: integer
                  example: 9999
                AdvertiserName:
                  type: string
                  example: Adv. Name
                Description:
                  type:
                  - string
                  - 'null'
                  example: Some description
              required:
              - AdvertiserId
            Campaign:
              type:
              - object
              - 'null'
              properties:
                CampaignId:
                  type: integer
                  example: 426161
                CampaignName:
                  type: string
                  example: Some Campaign name
            templateId:
              type: integer
              example: 7661
            TotalReachCalculation:
              type: string
              enum:
              - Selected
              - Full
              example: Full
            Sections:
              type: object
              properties:
                PersonalData:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                PersonalDataAge:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                PersonalDataCountry:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                PersonalDataGender:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                PersonalDataLanguage:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                Audience:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                AudienceAge:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                AudienceGender:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                AudienceCountry:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                AudienceState:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                AudienceCity:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                AudienceEthnicity:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 0
                AudienceIncomeRange:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                AudienceInterests:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                AudienceBrands:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                AudienceHashTags:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                AudienceInfluencers:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                ContentRating:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                SocialMetricsAll:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                FeaturedSponsoredPosts:
                  type: integer
                  example: 1
                FeaturedVideos:
                  type: integer
                  example: 4
                SponsoredVideos:
                  type: integer
                  example: 4
                AllDescription:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                Description:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                ShortDescription:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                Categories:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                Tags:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                SalesSheetImageURL:
                  type: integer
                  example: 1
                SalesSheetLogoURL:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
                StatusInCampaign:
                  type: integer
                  enum:
                  - 0
                  - 1
                  example: 1
            Template:
              type:
              - string
              - 'null'
              enum:
              - OneSheet
              - null
              example: OneSheet
            BrandingOptions:
              type: object
              properties:
                colorScheme:
                  type: object
                  properties:
                    name:
                      type: string
                      example: Default Theme
                    headerBgColor:
                      type: array
                      items:
                        type: string
                        example: '#262626'
                      example:
                      - '#262626'
                      - '#26001a'
                    headerTextColor:
                      type: string
                      example: '#f5f7fa'
                    introBgColor:
                      type: array
                      items:
                        type: string
                        example: '#4f4a9d'
                      example:
                      - '#4f4a9d'
                      - '#26001a'
                    introTextColor:
                      type: string
                      example: '#ffffff'
                    pageBgColor:
                      type: string
                      example: '#f5f5f5'
                    featuredBgColor:
                      type: array
                      items:
                        type: string
                        example: '#4f4a9d'
                      example:
                      - '#4f4a9d'
                      - '#f5f5f5'
                    featuredTextColor:
                      type: string
                      example: '#ffffff'
                leftAlignment:
                  type:
                  - boolean
                  - 'null'
                  example: false
                squareFrame:
                  typ

# --- truncated at 32 KB (98 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/creatoriq/refs/heads/main/openapi/creatoriq-onesheet-api-openapi.yml