Avid PubSuite Partner API
  1. post_campaign_status
Avid PubSuite Partner API
  • Default module
    • Pubsuite API Introduction
    • Getting Started
      • Authentication
      • Response Format
      • Error Codes
      • Usage Limits
    • Endpoints
      • Endpoints / Resources Introduction
      • Global Pubsuite Reference Libaries
      • Workspace Organisation Users
        • Organisation Users List
        • Organisation User By Id
      • Advertiser Accounts
        • Advertiser Accounts List
        • Account Detail
        • Account Delete
        • Account Create
        • Account Update
      • Advertiser Account Members
        • Advertiser Account Members
        • Adv Account Member Detail
        • Account Delete
        • Advertiser Account Member Create
        • Account Update
      • Campaigns
        • Campaign Body Parameters
        • Campaigns
        • Campaign
        • Delete Campaign
        • Campaign Details
        • Update Campaign
      • Phases
        • Phase Body Parameters
        • Phases List
        • Phase
        • Phase Detail
        • Delete Phase
        • Phase Update
      • Content
        • Content Body Parameters
        • Contents
        • Content Detail
        • Create Content
        • Delete Content
        • Update Content
      • Distributions
        • Distribution Body Parameters
        • Distributions List
        • Create Distributions
        • Delete Distribution
        • Distribution Details
        • Distribution Update
      • Publisher Profiles
        • Coming Soon
        • Publisher Profiles
        • Publisher Profile
        • Delete Publisher Profile
      • Publisher Products
        • Coming Soon
      • Data Sources
        • Coming Soon
      • Webhooks
        • Services
        • Create/Update Service
        • Registered Webhooks
        • Create Webhook
        • Update Webhook
        • Delete Webhook
    • Outbound Events
      • Outbound Events
  • Commercial - Avid Webhook - Order Events
    • post_campaign_status
      • Receive Avid campaign (Adpoint Order) status updated event
        POST
    • post_content_status
      • Receive content status (Adpoint Ad Group) updated event updated event
    • Schemas
      • post_campaign_status_request
      • post_content_status_request
      • 200_post_campaign_status_response
      • 200_post_content_status_response
      • error_response
      • error
  1. post_campaign_status

Receive Avid campaign (Adpoint Order) status updated event

POST
/campaign-status
Webhook endpoint that receives campaign status update notifications from Avid. Avid Campaign is equivalent to Adpoint Order

Request

Authorization
OAuth 2.0
Client Credentials
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Token URL: https://sit-api.news.com.au/oauth/client_credential/accesstoken
or
Header Params

Body Params application/jsonRequired

Example
{
    "event": "campaign_status_updated",
    "timestamp": "2025-06-06T01:23:45.000Z",
    "data": {
        "campaign_id": 0,
        "campaign_status": "string",
        "custom_fields": {
            "salesforce_opportunity_id": "string",
            "salesforce_opportunity_name": "string",
            "adpoint_primary_account_id": 0,
            "adpoint_order_id": 0,
            "salesforce_docs_url": "string",
            "assigned_cpm": "string"
        }
    }
}

Responses

🟢200
application/json
success response
Body

Example
{
    "data": {
        "status": "campaign status updated successfully"
    }
}
🟠400
🔴500
Previous
Outbound Events
Next
Receive content status (Adpoint Ad Group) updated event updated event