Skip to main content
Vaults

Delete a Vault

Deletes a Vault that is not referenced by a Template.

Path

DELETE /api/v1/forward/vaults/{id}

Request headers

HeaderRequiredDescription
AuthorizationYesBearer <PAT or SAT>
Checks Template references before deletion. If unreferenced, the Vault is deleted and no longer appears in default listings.

Path parameters

ParameterTypeRequiredDescription
idstringYesVault ID.

Example request

curl -X DELETE "https://api.qoder.com/api/v1/forward/vaults/vault_xxx" \
  -H "Authorization: Bearer $QODER_ACCESS_TOKEN"

Example response

{
  "id": "vault_xxx",
  "type": "vault_deleted",
  "deleted": true
}

Response fields

FieldTypeDescription
idstringID of the deleted resource.
typestringDeletion result type.
deletedbooleanWhether the resource was deleted.

Errors

HTTPTypeTrigger
400invalid_request_errorThe request body, path parameters, or pagination parameters are invalid.
401authentication_errorThe authentication token is missing or invalid.
403permission_errorThe caller cannot access this Vault.
404not_found_errorThe Vault does not exist, is not registered, or is not visible.
409conflict_errorThe idempotency key conflicts, create recovery requires manual intervention, or the resource is still referenced during deletion.
501feature_not_availableThe requested Vault field update is not currently available.
500/502/503api_errorForward or a dependent service failed.