v1

latestOpenAPI 3.0.12026-07-26106359429.8 KB
Compliance

List account entity relationships

Lists all entity relationships for a specific account.

get/v0/accounts/{id}/entity_relationships

Path parameters

idstring required

The ID of the Account object.

Example:account_xyz123

Account ID

Query parameters

limitinteger

Maximum number of results to return. Defaults to 25, max 100.

starting_afterstring

A cursor for pagination. Returns results starting after this cursor.

Response

List of entity relationships for the account.

has_moreboolean required

Indicates whether more results are available beyond this page.

cursorstring

Cursor to retrieve the next page of results. Only present when has_more is true.

Example response

{
  "objects": [
    {
      "entity_id": "entity_xyz123"
    }
  ]
}