Skip to main content
Vaults

Delete a vault

Delete a Vault.

DELETE /api/v1/cloud/vaults/{vault_id} Deletes a Vault and returns a deletion confirmation.

Path parameters

ParameterTypeDescription
vault_idstringVault ID with the vault_ prefix

Headers

HeaderRequiredDescription
AuthorizationYesBearer $QODER_ACCESS_TOKEN

Example request

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

Example response

HTTP 200 OK
{
  "id": "vault_019e3bb940277f0db05ab74291acf6ef",
  "type": "vault_deleted"
}
Successful deletion is signalled by "type": "vault_deleted" in the response body.

Errors

HTTPTypeTrigger
401TOKEN_INVALIDMissing or invalid authentication token
404not_found_errorVault does not exist or is not accessible
See Errors for the full error envelope.