Skip to main content
POST
/
v1
/
customers
/
bulk
Bulk create customers
curl --request POST \
  --url https://revstack.dev/v1/customers/bulk \
  --header 'Content-Type: application/json' \
  --data '
{
  "customers": [
    {
      "environmentId": "<string>",
      "userId": "<string>",
      "providerId": "<string>",
      "externalId": "<string>",
      "email": "jsmith@example.com",
      "name": "<string>",
      "phone": "<string>",
      "metadata": {}
    }
  ]
}
'
null

Body

application/json
customers
object[]
required
Minimum array length: 1

Response

Customers created

The response is of type unknown.