Bulk add customers to a mailing list

POST https://api.tamio.com/v2/customers/bulk/add-to-list

Adds multiple customers to a mailing list. Customers already subscribed are automatically skipped.

Body Parameters

customers array of string*

Array of customer UUIDs

mailing_list string*

UUID of the mailing list

Responses

200 Customers added to mailing list

Customers added to mailing list

status integer
customers array of string
400 Validation or business-logic error. Possible `error_code` values:
401 Unauthorized – invalid or missing Bearer token
/customers/bulk/add-to-list
1const response = await fetch("https://api.tamio.com/v2/customers/bulk/add-to-list", {
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,
  "customers": []
}