v1

latestOpenAPI 3.0.3Lucid2026-07-14155181312.3 KB
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

namestring

When provided, the name to give the updated credential

clientIdstring uuid

When provided, the ID of the application from which to import resource metadata for your subscriptions

tenantIdstring uuid

When provided, the ID of the directory to be used during authentication

clientSecretstring

When provided, the secret to be used for authentication

linkType'global' | 'government'

The type of Azure environment the credential is for

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.

credentialIdstring required

Azure credential ID

type'azure' required

Example response

{
  "credentialId": "azure_34567",
  "params": {
    "name": "Example Azure Credential",
    "clientId": "76cd2065-b065-43fa-ad55-316927945439",
    "tenantId": "de991a0e-5765-429a-bc8e-1a053bb61911",
    "linkType": "global"
  }
}