POST
/
customer
/
create
curl --request POST \
  --url https://api.liquidindex.dev/customer/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "project_id": "<string>",
  "name": "<string>"
}'
{
  "customer_id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
project_id
string
required

The Project ID to query from

name
string
required

The name you'd like to refer to the customer as

Response

200
application/json
Successful query response
customer_id
string
required

The Customer ID to query from