v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBWeb Integrations
Update a web integration account
Update an existing account for a given web integration.
patch/api/v2/web-integrations/{integration_name}/accounts/{account_id}
Path parameters
integration_namestring required
The name of the integration (for example, databricks).
account_idstring required
The unique identifier of the web integration account.
Request body
Example request
{
"data": {
"attributes": {
"name": "my-databricks-account",
"secrets": {
"client_secret": "my-client-secret"
},
"settings": {
"workspace_url": "https://example.azuredatabricks.net"
}
},
"type": "Account"
}
}Response
OK
Example response
{
"data": {
"attributes": {
"name": "my-databricks-account",
"settings": {
"workspace_url": "https://example.azuredatabricks.net"
}
},
"id": "abc123def456",
"type": "Account"
}
}