Pomo Influencer Campaigns API

The influencer-campaigns API from Pomo — 14 operation(s) for influencer-campaigns.

Operations 16

GET /api/influencer-campaigns/active Get Active Influencer Campaign #
GET /api/influencer-campaigns/active/summaries List Active Influencer Campaign Summaries #
GET /api/influencer-campaigns/{campaign_id} Get Influencer Campaign Detail #
PATCH /api/influencer-campaigns/{campaign_id} Update Influencer Campaign #
DELETE /api/influencer-campaigns/{campaign_id} Delete Influencer Campaign #
POST /api/influencer-campaigns Create Influencer Campaign #
POST /api/influencer-campaigns/from-creator-list/{list_id} Create Influencer Campaign From Creator List #
POST /api/influencer-campaigns/{campaign_id}/source-list-sync Sync Influencer Campaign From Source Creator List #
POST /api/influencer-campaigns/{campaign_id}/collection-creators Add Influencer Campaign Collection Creators #
PATCH /api/influencer-campaigns/{campaign_id}/collection Update Influencer Campaign Collection #
POST /api/influencer-campaigns/{campaign_id}/archive Archive Influencer Campaign #
POST /api/influencer-campaigns/curated-lists/{curated_list_id}/save Save Influencer Campaign Curated List #
PATCH /api/influencer-campaigns/curated-lists/{curated_list_id}/roles Update Influencer Campaign Creator Groups #
PATCH /api/influencer-campaigns/curated-lists/{curated_list_id}/report Update Influencer Campaign Report #
POST /api/influencer-campaigns/curated-lists/{curated_list_id}/creators/{creator_id}/replacement-candidates Find Influencer Campaign Replacement Candidates #
POST /api/influencer-campaigns/curated-lists/{curated_list_id}/creators/{creator_id}/replace Replace Influencer Campaign Creator #

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/pomo-influencer-campaigns-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

pomo-influencer-campaigns-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GPT Backend Influencer Campaigns API
  version: 0.1.0
servers:
- url: https://api.usepomo.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: influencer-campaigns
paths:
  /api/influencer-campaigns/active:
    get:
      tags:
      - influencer-campaigns
      summary: Get Active Influencer Campaign
      operationId: get_active_influencer_campaign_api_influencer_campaigns_active_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignActiveResponse'
      security:
      - HTTPBearer: []
  /api/influencer-campaigns/active/summaries:
    get:
      tags:
      - influencer-campaigns
      summary: List Active Influencer Campaign Summaries
      operationId: list_active_influencer_campaign_summaries_api_influencer_campaigns_active_summaries_get
      security:
      - HTTPBearer: []
      parameters:
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          maximum: 50
          minimum: 1
          default: 20
          title: Limit
      - name: offset
        in: query
        required: false
        schema:
          type: integer
          minimum: 0
          default: 0
          title: Offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignSummaryPageResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/influencer-campaigns/{campaign_id}:
    get:
      tags:
      - influencer-campaigns
      summary: Get Influencer Campaign Detail
      operationId: get_influencer_campaign_detail_api_influencer_campaigns__campaign_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: campaign_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Campaign Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignPlanResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    patch:
      tags:
      - influencer-campaigns
      summary: Update Influencer Campaign
      operationId: update_influencer_campaign_api_influencer_campaigns__campaign_id__patch
      security:
      - HTTPBearer: []
      parameters:
      - name: campaign_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Campaign Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InfluencerCampaignUpsertRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignPlanResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - influencer-campaigns
      summary: Delete Influencer Campaign
      operationId: delete_influencer_campaign_api_influencer_campaigns__campaign_id__delete
      security:
      - HTTPBearer: []
      parameters:
      - name: campaign_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Campaign Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignDeleteResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/influencer-campaigns:
    post:
      tags:
      - influencer-campaigns
      summary: Create Influencer Campaign
      operationId: create_influencer_campaign_api_influencer_campaigns_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InfluencerCampaignUpsertRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignPlanResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
  /api/influencer-campaigns/from-creator-list/{list_id}:
    post:
      tags:
      - influencer-campaigns
      summary: Create Influencer Campaign From Creator List
      operationId: create_influencer_campaign_from_creator_list_api_influencer_campaigns_from_creator_list__list_id__post
      security:
      - HTTPBearer: []
      parameters:
      - name: list_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: List Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InfluencerCampaignFromCreatorListRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignPlanResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/influencer-campaigns/{campaign_id}/source-list-sync:
    post:
      tags:
      - influencer-campaigns
      summary: Sync Influencer Campaign From Source Creator List
      operationId: sync_influencer_campaign_from_source_creator_list_api_influencer_campaigns__campaign_id__source_list_sync_post
      security:
      - HTTPBearer: []
      parameters:
      - name: campaign_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Campaign Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InfluencerCampaignSourceListSyncRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignPlanResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/influencer-campaigns/{campaign_id}/collection-creators:
    post:
      tags:
      - influencer-campaigns
      summary: Add Influencer Campaign Collection Creators
      operationId: add_influencer_campaign_collection_creators_api_influencer_campaigns__campaign_id__collection_creators_post
      security:
      - HTTPBearer: []
      parameters:
      - name: campaign_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Campaign Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InfluencerCampaignCollectionAddCreatorsRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignCollectionAddCreatorsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/influencer-campaigns/{campaign_id}/collection:
    patch:
      tags:
      - influencer-campaigns
      summary: Update Influencer Campaign Collection
      operationId: update_influencer_campaign_collection_api_influencer_campaigns__campaign_id__collection_patch
      security:
      - HTTPBearer: []
      parameters:
      - name: campaign_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Campaign Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InfluencerCampaignCollectionUpdateRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignPlanResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/influencer-campaigns/{campaign_id}/archive:
    post:
      tags:
      - influencer-campaigns
      summary: Archive Influencer Campaign
      operationId: archive_influencer_campaign_api_influencer_campaigns__campaign_id__archive_post
      security:
      - HTTPBearer: []
      parameters:
      - name: campaign_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Campaign Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignArchiveResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/influencer-campaigns/curated-lists/{curated_list_id}/save:
    post:
      tags:
      - influencer-campaigns
      summary: Save Influencer Campaign Curated List
      operationId: save_influencer_campaign_curated_list_api_influencer_campaigns_curated_lists__curated_list_id__save_post
      security:
      - HTTPBearer: []
      parameters:
      - name: curated_list_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Curated List Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignCuratedListSaveResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/influencer-campaigns/curated-lists/{curated_list_id}/roles:
    patch:
      tags:
      - influencer-campaigns
      summary: Update Influencer Campaign Creator Groups
      operationId: update_influencer_campaign_creator_groups_api_influencer_campaigns_curated_lists__curated_list_id__roles_patch
      security:
      - HTTPBearer: []
      parameters:
      - name: curated_list_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Curated List Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InfluencerCampaignRoleEditsRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignCuratedListMutationResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/influencer-campaigns/curated-lists/{curated_list_id}/report:
    patch:
      tags:
      - influencer-campaigns
      summary: Update Influencer Campaign Report
      operationId: update_influencer_campaign_report_api_influencer_campaigns_curated_lists__curated_list_id__report_patch
      security:
      - HTTPBearer: []
      parameters:
      - name: curated_list_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Curated List Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InfluencerCampaignReportUpdateRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignCuratedListMutationResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/influencer-campaigns/curated-lists/{curated_list_id}/creators/{creator_id}/replacement-candidates:
    post:
      tags:
      - influencer-campaigns
      summary: Find Influencer Campaign Replacement Candidates
      operationId: find_influencer_campaign_replacement_candidates_api_influencer_campaigns_curated_lists__curated_list_id__creators__creator_id__replacement_candidates_post
      security:
      - HTTPBearer: []
      parameters:
      - name: curated_list_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Curated List Id
      - name: creator_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Creator Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InfluencerCampaignReplacementCandidatesRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignReplacementCandidatesResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/influencer-campaigns/curated-lists/{curated_list_id}/creators/{creator_id}/replace:
    post:
      tags:
      - influencer-campaigns
      summary: Replace Influencer Campaign Creator
      operationId: replace_influencer_campaign_creator_api_influencer_campaigns_curated_lists__curated_list_id__creators__creator_id__replace_post
      security:
      - HTTPBearer: []
      parameters:
      - name: curated_list_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Curated List Id
      - name: creator_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Creator Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InfluencerCampaignReplaceCreatorRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InfluencerCampaignReplaceCreatorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    InfluencerCampaignCuratedListSaveResponse:
      properties:
        curated_list:
          $ref: '#/components/schemas/InfluencerCampaignCuratedListResponse'
      type: object
      required:
      - curated_list
      title: InfluencerCampaignCuratedListSaveResponse
    InfluencerCampaignCuratedListResponse:
      properties:
        id:
          type: string
          title: Id
        campaign_id:
          type: string
          title: Campaign Id
        title:
          type: string
          title: Title
        persona:
          type: string
          title: Persona
        query:
          type: string
          title: Query
        rationale:
          anyOf:
          - type: string
          - type: 'null'
          title: Rationale
        position:
          type: integer
          title: Position
        weight:
          type: number
          title: Weight
        total_creator_count:
          type: integer
          title: Total Creator Count
        platforms:
          items:
            type: string
          type: array
          title: Platforms
        target_markets:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Target Markets
        role_mix:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Role Mix
        size_mix:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Size Mix
        orchestra_timeline:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Orchestra Timeline
        budget_allocation:
          additionalProperties: true
          type: object
          title: Budget Allocation
        deliverables:
          additionalProperties: true
          type: object
          title: Deliverables
        brand_context_snapshot:
          additionalProperties: true
          type: object
          title: Brand Context Snapshot
        planning_assumptions:
          additionalProperties: true
          type: object
          title: Planning Assumptions
        leadership_report:
          additionalProperties: true
          type: object
          title: Leadership Report
        generation_version:
          type: integer
          title: Generation Version
        source_creator_list_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Source Creator List Id
        planning_status:
          type: string
          title: Planning Status
          default: ready
        roster_revision:
          type: integer
          title: Roster Revision
          default: 1
        roster_hash:
          anyOf:
          - type: string
          - type: 'null'
          title: Roster Hash
        is_saved:
          type: boolean
          title: Is Saved
        saved_at:
          anyOf:
          - type: string
          - type: 'null'
          title: Saved At
        saved_by_user_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Saved By User Id
        snapshot:
          additionalProperties: true
          type: object
          title: Snapshot
        creators:
          items:
            $ref: '#/components/schemas/InfluencerCampaignCreatorResponse'
          type: array
          title: Creators
        created_at:
          anyOf:
          - type: string
          - type: 'null'
          title: Created At
        updated_at:
          anyOf:
          - type: string
          - type: 'null'
          title: Updated At
      type: object
      required:
      - id
      - campaign_id
      - title
      - persona
      - query
      - position
      - weight
      - total_creator_count
      - generation_version
      - is_saved
      title: InfluencerCampaignCuratedListResponse
    InfluencerCampaignArchiveResponse:
      properties:
        archived:
          type: boolean
          title: Archived
        campaign:
          $ref: '#/components/schemas/InfluencerCampaignPlanResponse'
      type: object
      required:
      - archived
      - campaign
      title: InfluencerCampaignArchiveResponse
    InfluencerCampaignSummaryResponse:
      properties:
        id:
          type: string
          title: Id
        organization_id:
          type: string
          title: Organization Id
        company_profile_id:
          type: string
          title: Company Profile Id
        objective:
          type: string
          title: Objective
        objectives:
          items:
            type: string
          type: array
          title: Objectives
        budget_min:
          anyOf:
          - type: number
          - type: 'null'
          title: Budget Min
        budget_max:
          anyOf:
          - type: number
          - type: 'null'
          title: Budget Max
        budget_currency:
          type: string
          title: Budget Currency
          default: USD
        budget_usd:
          anyOf:
          - type: number
          - type: 'null'
          title: Budget Usd
        target_markets:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Target Markets
        platforms:
          items:
            type: string
          type: array
          title: Platforms
        posting_time_mode:
          type: string
          title: Posting Time Mode
        posting_time:
          anyOf:
          - type: string
          - type: 'null'
          title: Posting Time
        launch_start:
          anyOf:
          - type: string
          - type: 'null'
          title: Launch Start
        launch_end:
          anyOf:
          - type: string
          - type: 'null'
          title: Launch End
        status:
          type: string
          title: Status
        generation_version:
          type: integer
          title: Generation Version
        plan_origin:
          type: string
          title: Plan Origin
          default: campaign_workflow
        source_creator_list_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Source Creator List Id
        planning_status:
          type: string
          title: Planning Status
          default: ready
        roster_revision:
          type: integer
          title: Roster Revision
          default: 1
        roster_hash:
          anyOf:
          - type: string
          - type: 'null'
          title: Roster Hash
        recommended_budget_usd:
          anyOf:
          - type: number
          - type: 'null'
          title: Recommended Budget Usd
        collection_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Collection Name
        collection_description:
          anyOf:
          - type: string
          - type: 'null'
          title: Collection Description
        is_pinned:
          type: boolean
          title: Is Pinned
          default: false
        pinned_by_user_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Pinned By User Id
        pinned_at:
          anyOf:
          - type: string
          - type: 'null'
          title: Pinned At
        archived_by_user_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Archived By User Id
        archived_at:
          anyOf:
          - type: string
          - type: 'null'
          title: Archived At
        deleted_by_user_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Deleted By User Id
        deleted_at:
          anyOf:
          - type: string
          - type: 'null'
          title: Deleted At
        settings:
          additionalProperties: true
          type: object
          title: Settings
        curated_lists:
          items:
            $ref: '#/components/schemas/InfluencerCampaignCuratedListSummaryResponse'
          type: array
          title: Curated Lists
        created_at:
          anyOf:
          - type: string
          - type: 'null'
          title: Created At
        updated_at:
          anyOf:
          - type: string
          - type: 'null'
          title: Updated At
      type: object
      required:
      - id
      - organization_id
      - company_profile_id
      - objective
      - posting_time_mode
      - status
      - generation_version
      title: InfluencerCampaignSummaryResponse
    InfluencerCampaignReplacementCandidatesRequest:
      properties:
        query:
          type: string
          maxLength: 500
          title: Query
          default: ''
        limit:
          type: integer
          maximum: 20.0
          minimum: 1.0
          title: Limit
          default: 8
        creator_type_includes:
          items:
            type: string
          type: array
          maxItems: 12
          title: Creator Type Includes
        creator_type_excludes:
          items:
            type: string
          type: array
          maxItems: 12
          title: Creator Type Excludes
        min_followers:
          anyOf:
          - type: integer
            minimum: 0.0
          - type: 'null'
          title: Min Followers
        max_followers:
          anyOf:
          - type: integer
            minimum: 0.0
          - type: 'null'
          title: Max Followers
        location_filters:
          items:
            type: string
          type: array
          maxItems: 12
          title: Location Filters
      type: object
      title: InfluencerCampaignReplacementCandidatesRequest
    InfluencerCampaignRoleEdit:
      properties:
        role:
          type: string
          maxLength: 64
          minLength: 1
          title: Role
        label:
          type: string
          maxLength: 80
          minLength: 1
          title: Label
        budget_share_pct:
          type: number
          maximum: 100.0
          minimum: 0.0
          title: Budget Share Pct
        contact_day_offset:
          type: integer
          maximum: 365.0
          minimum: -365.0
          title: Contact Day Offset
        post_day_offset:
          type: integer
          maximum: 365.0
          minimum: -365.0
          title: Post Day Offset
      type: object
      required:
      - role
      - label
      - budget_share_pct
      - contact_day_offset
      - post_day_offset
      title: InfluencerCampaignRoleEdit
    InfluencerCampaignReportUpdateRequest:
      properties:
        business_inputs:
          $ref: '#/components/schemas/InfluencerCampaignReportBusinessInputs'
        refresh_ai:
          type: boolean
          title: Refresh Ai
          default: true
      type: object
      required:
      - business_inputs
      title: InfluencerCampaignReportUpdateRequest
    InfluencerCampaignCreatorResponse:
      properties:
        id:
          type: string
          title: Id
        curated_list_id:
          type: string
          title: Curated List Id
        position:
          type: integer
          title: Position
        creator_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Creator Id
        creator_account_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Creator Account Id
        company_profile_creator_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Company Profile Creator Id
        source_list_membership_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Source List Membership Id
        role:
          type: string
          title: Role
        slate_status:
          type: string
          title: Slate Status
        target_market:
          anyOf:
          - type: string
          - type: 'null'
          title: Target Market
        platform:
          type: string
          title: Platform
        inventory_account_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Inventory Account Id
        platform_account_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Platform Account Id
        handle:
          anyOf:
          - type: string
          - type: 'null'
          title: Handle
        display_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Display Name
        profile_url:
          anyOf:
          - type: string
          - type: 'null'
          title: Profile Url
        avatar_url:
          anyOf:
          - type: string
          - type: 'null'
          title: Avatar Url
        follower_count:
          anyOf:
          - type: integer
          - type: 'null'
          title: Follower Count
        avg_views:
          anyOf:
          - type: number
          - type: 'null'
          title: Avg Views
        engagement_rate:
          anyOf:
          - type: number
          - type: 'null'
          title: Engagement Rate
        estimated_price_min:
          anyOf:
          - type: number
          - type: 'null'
          title: Estimated Price Min
        estimated_price_max:
          anyOf:
          - type: number
          - type: 'null'
          title: Estimated Price Max
        reply_risk:
          anyOf:
          - type: string
          - type: 'null'
          title: Reply Risk
        fit_summary:
          anyOf:
          - type: string
          - type: 'null'
          title: Fit Summary
        phase:
          anyOf:
          - type: string
          - type: 'null'
          title: Phase
        contact_day_offset:
          anyOf:
          - type: integer
          - type: 'null'
          title: Contact Day Offset
        post_day_offset:
          anyOf:
          - type: integer
          - type: 'null'
          title: Post Day Offset
        budget_weight:
          anyOf:
          - type: number
          - type: 'null'
          title: Budget Weight
        allocated_budget_min:
          anyOf:
          - type: number
          - type: 'null'
          title: Allocated Budget Min
        allocated_budget_max:
          anyOf:
          - type: number
          - type: 'null'
          title: Allocated Budget Max
        budget_fit_status:
          anyOf:
          - type: string
          - type: 'null'
          title: Budget Fit Status
        deliverables:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Deliverables
        brand_fit_score:
          anyOf:
          - type: number
          - type: 'null'
          title: Brand Fit Score
        brand_fit_reasons:
          items:
            type: string
          type: array
          title: Brand Fit Reasons
        selection_rationale:
          anyOf:
          - type: string
          - type: 'null'
          title: Selection Rationale
        orchestra_slot_key:
          anyOf:
          - type: string
          - type: 'null'
          title: Orchestra Slot Key
        canonical_creator:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Canonical Creator
        accounts:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Accounts
        contacts:
          additionalProperties: true
          type: object
          title: Contacts
        metrics:
          additionalProperties: true
          type: object
          title: Metrics
        source_payload:
          additionalProperties: true
          type: object
          title: Source Payload
        created_at:
          anyOf:
          - type: string
          - t

# --- truncated at 32 KB (52 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/pomo/refs/heads/main/openapi/pomo-influencer-campaigns-api-openapi.yml