GET
/
platform
/
clients
Header
Query
curl --request GET \
  --url https://api.axle.insure/platform/clients \
  --header 'x-client-id: <x-client-id>' \
  --header 'x-client-secret: <x-client-secret>'
{
  "data": [
    "<string>"
  ],
  "success": true
}

Headers

x-client-id
string
required

Your client ID. This will be shared with you during onboarding.

x-client-secret
string
required

Your secret API key. This will be shared with you during onboarding and should be considered sensitive - it’s a password after all!

Query Parameters

expand
boolean

Set to true if you would like to expand related entities (e.g., account, policy, client). Defaults to false.

Response

200 - application/json
data
string[]

A list of identifiers for the destination clients associated with your credential, or if expand=true, a list of the destination client id and entity fields.

success
boolean

Indicates whether the operation was performed successfully.