Bulk create customers

POST https://api.tamio.com/v2/customers/bulk/create

Schedules a bulk import of multiple customers. Each customer in the array follows the same structure as the single create endpoint.

Note: This endpoint schedules the import as a background job.

Body Parameters

customers array of object*

Array of customer objects to create

Responses

200 Bulk import scheduled successfully

Bulk import scheduled successfully

status integer
400 Validation error
401 Unauthorized – invalid or missing Bearer token
/customers/bulk/create
1const response = await fetch("https://api.tamio.com/v2/customers/bulk/create", {
2 method: "POST",
3 headers: {
4 "Authorization": "Bearer YOUR_API_KEY",
5 "Content-Type": "application/json"
6 },
7 body: JSON.stringify({
8 // ... request body
9 })
10});
11const data = await response.json();
Responses
{
  "status": 200
}