Skip to main content

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

ParameterTypeRequiredDescription
vault_idstringYesVault unique identifier

Headers

HeaderRequiredDescription
AuthorizationYesBearer $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

HTTPTypeTrigger
401TOKEN_INVALIDMissing or invalid authentication token
404not_found_errorVault 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.