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

Content Detail

Developing
GET
https://api.avidpubsuite.com/v2/contents/{content_id}
Retrieves an instance of content item associated with a specific campaign phase.

Request

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

Body Params application/json

Example
{}

Responses

🟢200OK
application/json
Body

Example
{
    "success": true,
    "message": "Content fetched successfully",
    "data": {
        "content": {
          "content_id": 1,
          "campaign_id": 1,
          "phase_id": 1,
          "publisher_product_id": 599,
          "content_name": "content 1",
          "status": 0,
          "content_description": "description of content",
          "publisher_title_id": 78,
          "live_date": "2025-01-09",
          "content_editor": null,
          "g_impressions": 12000,
          "e_impressions": 19000,
          "g_video_views": 0,
          "e_video_views": 0,
          "g_article_views": 4540,
          "e_article_views": 7770,
          "g_traffic_to_site": 330,
          "e_traffic_to_site": 0,
          "deleted_at": null,
          "created_at": "2025-01-07 22:39:53",
          "updated_at": "2025-01-07 22:39:53"
        }
    }
}
🟠401Unauthorized
🟠404Resource Not Found
Previous
Contents
Next
Create Content