Skip to main content

Events

Currently, EnableNow supports the following webhook events:

  1. Transactions Fetched
    Occurs when transactions has been fetched successfully from the bank. This event will also be called on auto-synchronized fetching.
  2. Consent Status Updated
    Occurs when a consent status has been updated.
  3. Categorization Job Completed
    Occurs when a categorization job has been completed.

Transactions Fetched

Event name: transactions.fetched

When transactions have been fetched from the bank, a webhook event is triggered with the following Data structure:

"data": {
"userId": "<user_id>",
"consentId": "<consent_id>"
}

Please note that the userId will only be filled, when the consent was created with a user_id.

Event name: consent.status.updated

When a status of a consent is updated, a webhook event is triggered with the following Data structure:

"data": {
"userId": "<user_id>",
"consentId": "<consent_id>",
"status": "<updated_consent_status>"
}

Please note that the userId will only be filled, when the consent was created with a user_id.

Categorization Job Completed

Event name: categorizationjob.completed

When a categorization job is completed, a webhook event is triggered with the following Data structure:

"data": {
"userId": "<user_id>",
"consentId": "<consent_id>",
"jobId": "<categorization_job_id>"
}

Please note that the userId will only be filled, when the consent was created with a user_id.