Tamio

Bulk delete clients

POST https://api.tamio.com/v2/clients/bulk/delete

Deletes multiple client accounts in a single request.

Body Parameters

clients array of string*

Array of client UUIDs to delete

Example
{
  "clients": [
    "550e8400-e29b-41d4-a716-446655440001",
    "550e8400-e29b-41d4-a716-446655440002",
    "550e8400-e29b-41d4-a716-446655440003"
  ]
}

Responses

200 All clients deleted successfully

All clients deleted successfully

status integer
400 Validation or business-logic error.
401 Unauthorized – invalid or missing Bearer token
/clients/bulk/delete
1const response = await fetch("https://api.tamio.com/v2/clients/bulk/delete", {
2 method: "POST",
3 headers: {
4 "Authorization": "Bearer YOUR_API_KEY",
5 "Content-Type": "application/json"
6 },
7 body: JSON.stringify({
8 "clients": [
9 "550e8400-e29b-41d4-a716-446655440001",
10 "550e8400-e29b-41d4-a716-446655440002",
11 "550e8400-e29b-41d4-a716-446655440003"
12 ]
13 })
14});
15const data = await response.json();
Responses
{
  "status": 200
}