v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBWeb Integrations
Create a web integration account
Create a new account for a given web integration.
post/api/v2/web-integrations/{integration_name}/accounts
Path parameters
integration_namestring required
The name of the integration (for example, databricks).
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
CREATED
Example response
{
"data": {
"attributes": {
"name": "my-databricks-account",
"settings": {
"workspace_url": "https://example.azuredatabricks.net"
}
},
"id": "abc123def456",
"type": "Account"
}
}