Documentation Index
Fetch the complete documentation index at: https://docs.qoder.com/llms.txt
Use this file to discover all available pages before exploring further.
DELETE /v1/vaults/{vault_id}
Permanently deletes the specified vault and all its associated credentials. This operation is irreversible.
Path parameters
| Parameter | Type | Required | Description |
|---|
vault_id | string | Yes | Vault unique identifier |
| Header | Required | Description |
|---|
Authorization | Yes | Bearer $QODER_PAT |
No request body is required.
Example request
curl -X DELETE https://openapi.qoder.sh/api/v1/cloud/vaults/vault_019e3bb940277f0db05ab74291acf6ef \
-H "Authorization: Bearer $QODER_PAT"
Example response
HTTP 204 No Content
A successful delete returns HTTP 204 with no response body.
Errors
| HTTP | Type | Trigger |
|---|
| 401 | TOKEN_INVALID | Missing or invalid authentication token |
| 404 | not_found_error | Vault does not exist or has been deleted |
Notes
- Deletion is permanent and cannot be undone.
- Subsequent GET requests for a deleted vault return 404.
- Associated credentials are deleted along with the vault.
- Both
active and archived vaults can be deleted.
See Errors for the full error envelope.