Avid PubSuite Partner API
  1. Phases
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
        GET
      • Phase
        POST
      • Phase Detail
        GET
      • Delete Phase
        DELETE
      • Phase Update
        PUT
    • 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
  1. Phases

Phases List

Testing
GET
https://api.avidpubsuite.com/v2/phases/campaign/{campaign_id}
Retrieves read-only details of a campaign phase, including its ID, title, description, pacing, schedule, and timestamps. This endpoint is used for displaying or processing phase data in reporting, dashboards, or external integrations. Only fields marked for API inclusion with read access are returned.

Request

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

Query Params

Header Params

Responses

🟢200Success
application/json
Body

Example
{
    "success": true,
    "message": "string",
    "data": {
        "phases": {
            "current_page": 0,
            "data": [
                {
                    "phase_id": 0,
                    "campaign_id": 0,
                    "phase_title": "string",
                    "phase_no": 0,
                    "phase_description": "string",
                    "phase_pacing": "string",
                    "earliest_phase_launch_date": "string",
                    "latest_phase_launch_date": "string",
                    "earliest_phase_end_date": "string",
                    "latest_phase_end_date": "string",
                    "created_at": "string",
                    "updated_at": "string",
                    "deleted_at": null
                }
            ],
            "from": 0,
            "next_page_url": null,
            "per_page": 0,
            "prev_page_url": null,
            "to": 0
        }
    }
}
🟠401Unauthorized
🟠404Resource Not Found
🟠422Unprocessable Entity
🔴500Internal Server Error
Previous
Phase Body Parameters
Next
Phase