Delete a shipping method

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

Permanently deletes a shipping method by its UUID.

Path Parameters

uuid string*

UUID of the shipping method to delete.

Responses

200 Shipping method deleted

Shipping method deleted

status integer
400 Validation or business-logic error
401 Missing or invalid API key
/shippings/{uuid}
1const response = await fetch("https://api.tamio.com/v2/shippings/{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
}