POST
/
platform
/
clients
curl --request POST \
  --url https://api.axle.insure/platform/clients \
  --header 'Content-Type: application/json' \
  --header 'x-client-id: <x-client-id>' \
  --header 'x-client-secret: <api-key>' \
  --data '{
  "displayName": "My Destination Client",
  "entity": "my-destination-client"
}'
{
  "success": true,
  "data": {
    "id": "<string>"
  }
}

Authorizations

x-client-secret
string
headerrequired

Your secret API key. This will be shared with you during onboarding and should be considered sensitive - it’s a password after all! Your secret will be matched with your client ID to authenticate your requests.

Headers

x-client-id
string
required

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

Body

application/json
displayName
string
required

The name of the destination client to display to the users.

entity
string
required

A standardized entity name for the destination client using all lowercase, and dashes instead of spaces. For example, my-destination-client. Entity names must be unique across all destination clients, and you will recieve a 409 response with a clear status message if the entity name has already been taken.

Response

200 - application/json
success
boolean
required

Indicates whether the operation was performed successfully.

data
object
required