Avid PubSuite Partner API
  1. Workspace Organisation Users
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
          GET
        • User Details
          GET
        • Upsert User
          POST
        • Delete User
          DELETE
      • 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_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. Workspace Organisation Users

Upsert User

POST
https://api.avidpubsuite.com/v2/organisation-users
Fetches a paginated list of users associated with the authenticated user's organization. It accepts data in application/json format.

Request

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

Body Params application/json

Example
{
    "user_id": 67507881,
    "user_email": "Alana49@yahoo.com",
    "user_first_name": "Norbert",
    "user_last_name": "Block",
    "roles": [
        {
            "role_type": 1
        },
        {
            "role_type": 2
        }
    ],
    "custom_fields": null
}

Responses

🟢200OK
application/json
Body

Example
{
    "success": true,
    "message": "string",
    "data": {
        "user_id": 0,
        "user_first_name": "string",
        "user_last_name": "string",
        "user_email": "user@example.com",
        "custom_fields": {},
        "okta_id": "string",
        "auth0id": "string",
        "roles": [
            {
                "name": "string",
                "role_type": 0
            }
        ]
    }
}
🟠401Unauthorized
🔴500Internal Server Error
🟠404Resource Not Found
Previous
User Details
Next
Delete User