Cloud
Update Azure Credential
Update an existing credential for Azure.
patch/v1/credentials/azure/{azureCredentialId}
Path parameters
azureCredentialIdstring required
Azure credential ID
Example:azure_34567
The ID of the Azure credential to update
Request body
Example request
{
"name": "Example Azure Credential - Updated",
"clientId": "76cd2065-b065-43fa-ad55-316927945439",
"tenantId": "de991a0e-5765-429a-bc8e-1a053bb61911",
"clientSecret": "example-azure-secret",
"linkType": "global"
}Response
OK. Returns the updated Azure credential.
Example response
{
"credentialId": "azure_34567",
"params": {
"name": "Example Azure Credential",
"clientId": "76cd2065-b065-43fa-ad55-316927945439",
"tenantId": "de991a0e-5765-429a-bc8e-1a053bb61911",
"linkType": "global"
}
}