Manage Webhooks
Webhooks API reference guide
Webhooks notify users or other systems when actions happen in Immuta. Every action that generates a notification is available as a webhook.
This page lists the REST endpoints for managing webhooks and provides examples of requests.
Webhook overview
Application Admins can configure webhooks that are triggered by events that happen in the system (such as when data sources or projects are created), but any user can configure webhooks that are triggered by access requests and activity notifications.
All user-configured webhook integrations must respond within 10 seconds of receiving the webhook request payload. If the webhook integration takes longer to respond, the request will timeout.
Webhook workflow
Create a webhook
POST
/webhooks
Create a new webhook. Users can create multiple webhooks in a single request.
Webhook Notifications
Type | Triggers |
---|---|
acknowledgedAccess | A project member acknowledges the purposes on a project. |
addedToProject | A data source is added to a project. |
apiKeyRevoked | A user's API key is revoked. |
attributeAdded | An attribute is added to a group or user. |
attributeRemoved | An attribute is removed from a group or user. |
attributeUpdated | Attributes for a group or user are updated. |
bulkJobStatus | A bulk action is completed (whether success/failure). |
certificationRequired | A Global Policy that requires certification by the data source owner is applied to a data source. |
conflictingGlobalPolicies | Global Policies are applied to the same column on a data source. |
dataSourceExpired | A data source that was configured to expire has expired. |
dataSourceExpiring | A data source that was configured to expire expires tomorrow. |
dataSourceUpdated | A data source is updated. |
deletedDatasourceRemovedFromProject | A data source has been deleted and then removed from a project. |
expiredDatasourceRemovedFromProject | A data source that has expired and been deleted is removed from a project. |
firstQuery | A data source is queried for the first time through Immuta. |
globalPolicyCreated | A Global Policy is created. |
globalPolicyDeleted | A Global Policy is deleted. |
globalPolicyDisabled | A Global Policy is disabled. |
globalPolicyUpdated | A Global Policy is updated. |
groupUserAdded | A user is added to a group. |
groupUserDeleted | A user is removed from a group. |
healthCheckFailed | A health check runs and returns not healthy. |
healthCheckResolved | A health check runs and returns healthy. |
modelAccessApproved | A user's access request is approved for a data source or project. |
modelAccessDenied | A user's access request is denied for a data source or project. |
modelAccessRequested | A user requests access to a data source or project. |
modelAccessRevoked | A user's access request is revoked for a data source or project. |
modelAccessUpdated | A user's access level is updated for a data source or project. |
modelCreated | A data source or project is created. |
modelDeleted | A data source or project is deleted. |
modelTagAdded | A tag is added to a data source or a data source column. |
modelTagRemoved | A tag is removed from a data source or a data source column. |
modelUserAdded | A user is added to a data source. |
modelUserDeleted | A user is removed from a data source. |
modelUserJoined | A user joins a data source that they are already allowed to join. |
nativeWorkspaceStateChanged | A native workspace configuration within a project changes. |
permissionsUpdated | A user's permissions are updated. |
policyAdjustmentCreated | A policy adjustment is created. |
policyAdjustmentExpired | A policy adjustment has expired (the default is after a year). |
policyCertificationExpired | A policy certification on a data source has expired. |
policyUpdated | A data source's policies have been updated by a user or Global Policy. Policy updates are triggered for many reasons, including when a data source is created, a user updates them, a Global Policy changed, tags are added to a data source or column, the data dictionary changed, a fingerprint is recomputed, an external catalog modifies tags on a linked data source, or a policy disabled. |
projectDisabled | A project is disabled. |
projectEqualizationMemberNotInCompliance | A member of an equalized project is out of compliance. |
projectEqualizationToggled | Project equalization is toggled on or off. |
projectUpdated | A project is updated. |
purposeCreated | A purpose is created. |
purposeDeleted | A purpose is deleted. |
purposeUpdated | A purpose is updated. |
queryCanceled | A running query is canceled due to a change on a data source. |
queryCreated | A user creates a public query on a data source. |
queryUpdated | A public query is updated. |
removedFromProject | A data source is removed from a project. |
switchedCurrentProject | A user switches their current project. |
tagCreated | A tag is created. |
tagDeleted | A tag is deleted. |
tagUpdated | A tag is updated. |
taskDeleted | An outstanding data source task is deleted without validation. |
taskValidated | An outstanding data source task is validated. |
userCloned | A user is cloned. |
userCreated | A user or group is created. |
userDeleted | A user or group is deleted. |
userDisabled | A user is disabled. |
userEnabled | A user is enabled. |
userMigrated | A user is migrated from an old IAM to a new IAM. |
usernameUpdated | A user's name is updated. |
userUpdated | A group is updated. |
Payload parameters
Attribute | Description | Required |
---|---|---|
webhooks |
| Yes |
url |
| Yes |
name |
| Yes |
global |
| Yes |
notificationType |
| Yes |
actionType |
| Yes |
secret |
| No |
Response schema
Attribute | Description |
---|---|
createdWebhooks |
|
Request example
The following request with the payload below creates a new webhook.
Payload example
Response example
Retrieve webhook information
Endpoint | Purpose |
---|---|
Return a list of webhooks the user can see. (Admins can see all webhooks; users can only see their own webhooks.) | |
Return a list of valid notification actions that a webhook can be triggered by. | |
Return historical records for webhook requests, including requests and responses. | |
Return specified webhook by ID. |
Search for webhooks
GET
/webhooks
Return a list of webhooks the user can see. (Admins can see all webhooks; users can only see their own webhooks.)
Response schema
Attribute | Description |
---|---|
value |
|
Request example
The following request returns a list of webhooks the user can see.
Response example
Search for notification actions
GET
/webhooks/actions
Return a list of valid notification actions that a webhook can be triggered by. |
Response schema
Attribute | Description |
---|---|
value |
|
Request example
The following request returns a list of valid notification actions that a webhook can be triggered by.
Response example
Search for webhook records
GET
/webhooks/history
Return historical records for webhook requests, including requests and responses.
Query parameters
Attribute | Description | Required |
---|---|---|
offset |
| No |
pageSize |
| No |
sortField |
| No |
sortOrder |
| No |
notificationType |
| No |
includeGlobal |
| No |
includeUser |
| No |
successOrFailure |
| No |
Response schema
Attribute | Description |
---|---|
count |
|
records |
|
Request example
The following request returns historical records for webhook requests, including requests and responses.
Response example
Search for webhook by ID
GET
/webhooks/{id}
Return specified webhook by ID.
Query parameters
Attribute | Description | Required |
---|---|---|
id |
| Yes |
Response schema
Attribute | Description |
---|---|
value |
|
Request example
The following request returns details on the webhook with the ID 1
.
Response example
Retry webhook by ID
POST
/webhooks/history/retry/{id}
Retry webhook requests by history ID. This can be done against any history record, regardless of failure or success.
Query parameters
Attribute | Description | Required |
---|---|---|
id |
| Yes |
Response schema
Attribute | Description |
---|---|
id |
|
request |
|
response |
|
statusCode |
|
notificationType |
|
webhooksActivityId |
|
createdAt |
|
updatedAt |
|
Request example
The following request retries the webhook with the ID 1
.
Response example
Delete a webhook
DELETE
/webhooks/{id}
Delete a webhook by ID.
Query parameters
Attribute | Description | Required |
---|---|---|
id |
| Yes |
Response schema
Attribute | Description |
---|---|
value |
|
Request example
The following request deletes the webhook with the ID 1
.
Response example
Troubleshooting
statusCode | code | Issue |
---|---|---|
| The request timed out. |
Timed out request
The webhook request took longer than Immuta allows for a response. The default time limit is 10 seconds. To change this limit, reach out to your Immuta representative.
Request example
Response example
Last updated