Skip to main content
POST
/
api
/
v2
/
customers
Create a customer
curl --request POST \
  --url https://sandbox.killb.app/api/v2/customers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "strategiesByPair": {},
  "availableProducts": {},
  "active": true,
  "deletedAt": "2023-11-07T05:31:56Z",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
name
string
required

Response

id
string
required
name
string
required
strategiesByPair
object
required
availableProducts
object
required
active
boolean
required
deletedAt
string<date-time>
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required