Skip to content
Ads API •References / campaigns / Create a Campaign

Create a Campaign

Creates campaign under a given ad account.

Request

  • ad_account_id
    string [uuid]
    Required

    A unique identifier for an Ad Account.

    Example: ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a
  • name
    string
    Required

    Name given to identify your campaign.

    Pattern: ^\S.*\S$Length between 2 and 120Example: "Spotify Ads Summer Campaign 2022"
  • purchase_order
    string

    A purchase order number, to be shown on your invoice, for your own personal organization.

    Length between 2 and 45Example: "ORDER_1"
  • objective
    string
    Required

    Objective for a campaign. UNSET should not be used.

    Default: "EVEN_IMPRESSION_DELIVERY"Allowed values: "UNSET", "REACH", "EVEN_IMPRESSION_DELIVERY", "CLICKS", "VIDEO_VIEWS", "PODCAST_STREAMS"Example: "EVEN_IMPRESSION_DELIVERY"

Response

Metadata of created campaign.

  • id
    string [uuid]

    A unique identifier for the entity.

    Example: "ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a"
  • name
    string

    Name given to identify your campaign.

    Pattern: ^\S.*\S$Length between 2 and 120Example: "Spotify Ads Summer Campaign 2022"
  • created_at
    string [date-time]

    Date the entity was created. Time should be in ISO 8601 format using Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ

    Example: "2026-01-23T04:56:07Z"
  • updated_at
    string [date-time]

    Date the entity was updated. Time should be in ISO 8601 format using Coordinated Universal Time (UTC) with a zero offset: YYYY-MM-DDTHH:MM:SSZ

    Example: "2026-01-23T04:56:07Z"
  • purchase_order
    string

    A purchase order number, to be shown on your invoice, for your own personal organization.

    Length between 2 and 45Example: "ORDER_1"
  • status
    string

    Current state of campaign.

    Allowed values: "UNSET", "ACTIVE", "PAUSED", "ARCHIVED", "UNRECOGNIZED"Example: "ACTIVE"
  • objective
    string

    Objective for a campaign. UNSET should not be used.

    Default: "EVEN_IMPRESSION_DELIVERY"Allowed values: "UNSET", "REACH", "EVEN_IMPRESSION_DELIVERY", "CLICKS", "VIDEO_VIEWS", "PODCAST_STREAMS"Example: "EVEN_IMPRESSION_DELIVERY"

Response sample

{  "id": "ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a",  "name": "Spotify Ads Summer Campaign 2022",  "created_at": "2026-01-23T04:56:07Z",  "updated_at": "2026-01-23T04:56:07Z",  "purchase_order": "ORDER_1",  "status": "ACTIVE",  "objective": "EVEN_IMPRESSION_DELIVERY"}