Avid PubSuite Partner API
  1. Workspace Organisation Users
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
        GET
      • Organisation User By Id
        GET
    • 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
  1. Workspace Organisation Users

Organisation Users List

Developing
GET
https://api.avidpubsuite.com/v2/ws-org-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

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
Global Pubsuite Reference Libaries
Next
Organisation User By Id