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": {}
}
]
}
'nullCreates multiple customer records in a single request.
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": {}
}
]
}
'null1Show child attributes
Customers created
The response is of type unknown.