PATCH
The update key operation changes specified attributes of a stored key and can be applied to any key type and key version stored in Azure Key Vault.
https://azure.com/keys/{key-name}/{key-version}In order to perform this operation, the key must already exist in the Key Vault. Note: The cryptographic material of a key itself cannot be changed. This operation requires the keys/update permission.
Access Token Required: API Key
Path Parameters
key-namestringrequired
The name of key to update.
key-versionstringrequired
The version of the key to update.
Responses
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}Language
CredentialsAPI KEY
API Key
Enter token below to save for later
cURL Request
1curl --request PATCH \2 --url 'https://azure.com/keys/{key-name}/{key-version}' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'Response
1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}