Taiga
API ReferenceFee SchedulesV3

Hard delete rates by IDs

Hard deletes specific rates from the system by their IDs. This is a destructive operation and cannot be undone. Limited to 100 rate IDs maximum per request. For bulk deletion of more than 100 rates, use the hard_delete_rates endpoint with dimension filters. Returns the number of rates deleted.

POST
/api/fee-schedules/v3/hard-delete-by-ids

Authorization

BearerAuth
AuthorizationBearer <token>

Send your Taiga API key as a Bearer token. Create and manage keys in the Taiga developer portal.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/fee-schedules/v3/hard-delete-by-ids" \  -H "Content-Type: application/json" \  -d '{    "rate_ids": [      "a77ae52e-f391-4576-ab82-28376658aeac"    ]  }'
0