Skip to main content
POST
/
advertisers
/
{advertiserId}
/
syndicate
Toggle syndication for a resource
curl --request POST \
  --url https://api.agentic.scope3.com/api/v2/buyer/advertisers/{advertiserId}/syndicate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "resource_type": "AUDIENCE",
  "resource_id": "<string>",
  "adcp_agent_ids": [
    "<string>"
  ],
  "enabled": true
}
'
{
  "data": [
    {
      "id": "1",
      "customer_id": 0,
      "seat_id": "12345",
      "resource_type": "AUDIENCE",
      "resource_id": "<string>",
      "audience_id": "1",
      "event_source_id": "<string>",
      "catalog_id": "<string>",
      "adcp_agent_id": "42",
      "adcp_agent_account_id": "<string>",
      "enabled": true,
      "status": "PENDING",
      "error_message": "<string>",
      "response_data": "<unknown>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "completed_at": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key or access token

Path Parameters

advertiserId
string
required

Unique identifier for the advertiser

Minimum string length: 1
Example:

"12345"

Body

application/json
resource_type
enum<string>
required
Available options:
AUDIENCE,
EVENT_SOURCE,
CATALOG
resource_id
string
required
Minimum string length: 1
adcp_agent_ids
string[]
required
Minimum array length: 1
Minimum string length: 1
enabled
boolean
required

Response

Toggle syndication for a resource

Response after toggling syndication for one or more ADCP agents

data
object[]
required