Avid PubSuite Partner API
  1. Content
Avid PubSuite Partner API
  • 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
        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
  1. Content

Update Content

Developing
PUT
https://api.avidpubsuite.com/v2/contents/{content_id}

Request

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

Header Params

Body Params application/json

Example
{
    "campaign_id": 1,
    "phase_id": 1,
    "publisher_title_id": 40,
    "content_name": "AA Heidi Langwortha",
    "publisher_product_id": 115,
    "status": "2",
    "live_date": "2025-01-02",
    "content_description": "Alveus correptius cruentus turba. Quibusdam curia verumtamen patrocinor. Clamo corporis despecto vilis crepusculum caute acerbitas mollitia civitas",
    "content_editor_id": 64048287,
    "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
}

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
Delete Content
Next
Distribution Body Parameters