Organization API
Handles management of organizations and agencies, including creating, updating, retrieving, and deleting agencies and related entities. Provides endpoints for loading agency details, managing platform accounts, and handling organizational hierarchies.
GET /organistion/loadplatformaccounts
Purpose
Load all platform accounts connected to the logged in user's organisation.
Request (cURL)
curl --location '{{_.base_url}}/organisation/loadplatformaccounts' \
--header 'Content-Type: application/json' \
--header 'Cookie: digitalAudience=123'Notes:
Include the
Cookieheader from login.
Response
Fields
id
Unique identifier for the platform account.
name
The name of the platform account.
platformId
Unique identifier for the platform (e.g., Google DDP).
platformName
Internal name of the platform.
platformDisplayName
User-friendly display name of the platform.
agencyId
Unique identifier for the agency that owns the account.
agencyName
Name of the agency that owns the account.
accountTypeId
Unique identifier for the type of account (e.g., partner, advertiser).
accountTypeName
Name or description of the account type.
advertiserId
Unique identifier for the advertiser (nullable if not applicable).
clientId
Identifier for the client within the platform (often used for API or integration purposes).
accessToken
Access token for authenticating with the platform (nullable if not set).
defaultSegmentPricingCategoryId
Default pricing category for segments associated with this account (nullable if not set).
created
Date and time when the account was created (ISO 8601 format).
updated
Date and time when the account was last updated (ISO 8601 format).
Last updated