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

Delete User

DELETE
https://api.avidpubsuite.com/v2/organisation-users/{id}
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: ********************
Path Params

Header Params

Responses

🟢200OK
application/json
Body

Example
{
    "success": true,
    "message": "string",
    "data": {
        "users": {
            "current_page": 0,
            "data": [
                {
                    "id": 0,
                    "first_name": "string",
                    "last_name": "string",
                    "email": "string",
                    "okta_id": null,
                    "email_verified_at": null,
                    "contact_number": "string",
                    "staff_title": null,
                    "organization_code": "string",
                    "notification": "string",
                    "photo": "string",
                    "active": 0,
                    "is_deleted": 0,
                    "emailNotification": "string",
                    "updated_at": "string"
                }
            ],
            "from": 0,
            "next_page_url": null,
            "per_page": 0,
            "prev_page_url": null,
            "to": 0
        }
    }
}
🟠401Unauthorized
🔴500Internal Server Error
🟠404Resource Not Found
Previous
Upsert User
Next
Advertiser Accounts List