Skip to main content
DELETE
Permanently delete a location. Deletion is immediate and cannot be undone — any transfer that resolves to it will stop authenticating. A successful delete returns 204 No Content. Address the location by name or id in the request body; at least one is required. A non-unique name returns 409 with the candidates — resend with the id of the one you want.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Address the location by name or id.

name
string

The location name (its label). Resolved to a single location; if the name matches several, also send id to pick one.

Example:

"prod-backups"

id
string

The location's UUID. Addresses one location directly, or — alongside name — selects which match of a non-unique name to act on.

Example:

"3f9a2b7c-1d4e-4a8f-9c2b-6e5d0a1f7b83"

Response

Location deleted. The response body is empty.