Avid PubSuite Partner API
  1. Content
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 Org
        • Workspace Organisation
      • Workspace Organisation Users
        • List Users
        • User Details
        • Upsert User
        • Delete User
      • 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
          GET
        • Content Detail
          GET
        • Create Content
          POST
        • Delete Content
          DELETE
        • Update Content
          PUT
      • 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_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. Content

Create Content

Developing
POST
https://api.avidpubsuite.com/v2/contents

Request

Authorization
Add parameter in header
X-API-Key
Example:
X-API-Key: ********************
Header Params

Body Params application/json

Example
{
    "campaign_id": 1,
    "phase_id": 280,
    "contents": [
        {
            "external_id": "38932665558",
            "publisher_title_id": 2,
            "content_name": "Heidi Langworth",
            "publisher_product_id": null,
            "status": 1,
            "live_date": "2025-07-01",
            "content_description": "Alveus correptius cruentus turba. Quibusdam curia verumtamen patrocinor. Clamo corporis despecto vilis crepusculum caute acerbitas mollitia civitas.",
            "content_editor_id": 1,
            "content_editor_email": "Nella_Johnson@gmail.com",
            "g_impressions": 78511004,
            "e_impressions": 28121195,
            "g_video_views": 64716349,
            "e_video_views": 67811688,
            "g_article_views": 65532347,
            "e_article_views": 30357114,
            "g_traffic_to_site": 88747824,
            "e_traffic_to_site": 54398813,
            "custom_fields": {
                "adpoint_publisher_name": "TechGear Media",
                "product_set_id": 1011,
                "adpoint_avid_serviced_state_id": 3,
                "salesforce_concepts": "Awareness, Traffic",
                "salesforce_product_goal": "Increase Brand Reach",
                "salesforce_product_goal_info": "Expand visibility across tech audiences aged 18-34.",
                "adpoint_informative_line": "Running across top-tier tech websites and mobile apps.",
                "adpoint_inclusions": "Campaign setup across Facebook, Instagram, and Google Ads Manager.",
                "adpoint_required_assets": "High-resolution product images (minimum 1080x1080px)."
            }
        }
    ]
}

Responses

🟢200Success
application/json
Body

Example
{
    "success": true,
    "message": "string",
    "content": {
        "content_id": 0,
        "campaign_id": 0,
        "phase_id": 0,
        "publisher_product_id": 0,
        "content_name": "string",
        "status": 0,
        "content_description": "string",
        "publisher_title_id": 0,
        "live_date": "string",
        "content_editor": null,
        "g_impressions": 0,
        "e_impressions": 0,
        "g_video_views": 0,
        "e_video_views": 0,
        "g_article_views": 0,
        "e_article_views": 0,
        "g_traffic_to_site": 0,
        "e_traffic_to_site": 0,
        "deleted_at": null,
        "created_at": "string",
        "updated_at": "string"
    }
}
🟠401Unauthorized
🟠404Resource Not Found
🟠422Unprocessable Entity
🔴500Internal Server Error
Previous
Content Detail
Next
Delete Content