Ads API •References / campaigns / Update a Campaign
Update a Campaign
Updates the given existing campaign.
Request
- ad_account_idstring [uuid]Required
A unique identifier for an Ad Account.
Example:ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a
- campaign_idstring [uuid]Required
A unique identifier for the entity.
Example:ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a
Minimum number of properties:
1
- namestring
Name given to identify your campaign.
Pattern:^\S.*\S$
Length between2
and200
Example:"Spotify Ads Summer Campaign 2022"
- statusstring
Current state of campaign.
Allowed values:"UNSET"
,"ACTIVE"
,"PAUSED"
,"ARCHIVED"
,"UNRECOGNIZED"
Example:"ACTIVE"
Response
Metadata for a single campaign.
- idstring [uuid]
A unique identifier for the entity.
Example:"ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a"
- namestring
Name given to identify your campaign.
Pattern:^\S.*\S$
Length between2
and200
Example:"Spotify Ads Summer Campaign 2022"
- created_atstring [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_atstring [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_orderstring
A purchase order number, to be shown on your invoice, for your own personal organization.
Length between2
and45
Example:"ORDER_1"
- statusstring
Current state of campaign.
Allowed values:"UNSET"
,"ACTIVE"
,"PAUSED"
,"ARCHIVED"
,"UNRECOGNIZED"
Example:"ACTIVE"
- objectivestring
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"
curl --request PATCH \
--url https://api-partner.spotify.com/ads/v2/ad_accounts/ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a/campaigns/ce4ff15e-f04d-48b9-9ddf-fb3c85fbd57a \
--header 'Authorization: Bearer 1POdFZRZbvb...qqillRxMr2z' \
--header 'Content-Type: application/json' \
--data '{
"name": "Spotify Ads Summer Campaign 2022",
"status": "ACTIVE"
}'
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"}