Delete a billing plan

DELETE https://api.tamio.com/v2/agency/plans/{uuid}

Permanently deletes an agency billing plan.

Path Parameters

uuid string*

Responses

200 Billing plan deleted successfully

Billing plan deleted successfully

status integer
id string
400 Validation or business-logic error. Possible `error_code` values:
401 Unauthorized – invalid or missing Bearer token
/agency/plans/{uuid}
1const response = await fetch("https://api.tamio.com/v2/agency/plans/{uuid}", {
2 method: "DELETE",
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,
  "id": "string"
}