Skip to main content
GET
/
v1
/
organizations
/
{organization_id}
/
workspaces
/
{workspace_id}
/
platform_integrations
/
{id}
/
accounts
List all accounts accessible with the platform integration
curl --request GET \
  --url https://api.shareofmodel.ai/v1/organizations/{organization_id}/workspaces/{workspace_id}/platform_integrations/{id}/accounts \
  --header 'Authorization: <api-key>'
[
  {
    "id": "<string>",
    "platform_integration_id": "<string>",
    "name": "<string>",
    "platform": "google_ads"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.shareofmodel.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Path Parameters

id
string<uuid>
required

A UUID string identifying this platform integration.

organization_id
string<uuid>
required

A UUID string identifying the organization.

workspace_id
string<uuid>
required

A UUID string identifying the workspace.

Response

A list of accounts associated with the platform integration.

id
string
required

The unique identifier of the account.

platform_integration_id
string
required

The ID of the platform integration associated with this account.

name
string
required

The name of the account.

platform
enum<string>
required

The platform associated with the account.

  • google_ads - google ads
  • tiktok - tiktok
Available options:
google_ads,
tiktok