POST
/
customers
/
{customer_id}
/
entities
curl -X POST 'https://api.useautumn.com/v1/customers/user_123/entities' \
-H 'Authorization: Bearer am_sk_1234567890' \
-H 'Content-Type: application/json' \
-d '{
  "feature_id": "seats",
  "id": "seat_456",
  "name": "Brandon Yeo"
}'

You can create multiple entities at once by passing an array of entities.

Authorizations

Authorization
string
header
required

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

Path Parameters

customer_id
string
required

The unique identifier of the customer

Body

application/json · object[]

The body is of type object[].