Webhooks are event-based notifications that are received when a specific event related to the account aggregator occurs.

Add webhooks

Add your webhook URL in our system for us to deliver webhook events. Follow the instructions below to configure the webhook URL. Ensure to provide the publicly accessible HTTPS URL to your webhook endpoint.
  1. Log in to the Merchant Dashboard and click Developers.
  2. Click Webhooks listed under the Secure ID card.
  3. Click Add Webhook URL in the Webhook screen.
  4. In the Add Webhook popup, fill in the following information:
  • Webhook URL - Enter the URL in this field.
  1. Click Test & Add Webhook.

Add Webhook

EventDescription
AA_CONSENT_VERIFICATION_SUCCESSConsent is approved.
AA_CONSENT_VERIFICATION_PAUSEDConsent is paused.
AA_CONSENT_VERIFICATION_REVOKEDConsent is revoked.
AA_CONSENT_VERIFICATION_REJECTEDConsent is rejected.
AA_CONSENT_VERIFICATION_EXPIREDConsent has expired.
{
    "signature": "e8f06e55abcf7483f3249b7a992f4a2d",
    "event_type": "AA_CONSENT_VERIFICATION_SUCCESS",
    "event_time": "2024-02-15 16:53:15",
    "version": "v1",
    "data": {
    "status": "SUCCESS",
    "consent_verification_id": "a12bc34def56789"
    }
}

FI webhook event

EventDescription
AA_FI_VERIFICATION_SUCCESSFinancial information verification is successful.
AA_FI_VERIFICATION_ACTIVEFinancial information consent is active.
AA_FI_VERIFICATION_FAILEDFinancial information verification has failed.
AA_FI_VERIFICATION_EXPIREDFinancial information verification has expired.
{
    "signature": "e8f06e55abcf7483f3249b7a992f4a2d",
    "event_type": "AA_FI_VERIFICATION_ACTIVE",
    "event_time": "2024-02-15 16:53:15",
    "version": "v1",
    "data": {
    "status": "ACTIVE",
    "fi_verification_id": "v1234567890abcdef",
    "fi_status_response": [
            {
                "fip_id": "FIP_1",
                "accounts": [
                    {
                        "link_ref_number": "b2328fa7-0dcd-2314-asb5-9ef7b4c1cz6b",
                        "fi_status": "READY"
                    },
                    {
                        "link_ref_number": "a2328fa7-0dcd-2314-asb5-9ef7b4c1cz6b",
                        "fi_status": "TIMEOUT"
                    }
                ]
            },
            {
                "fip_id": "FIP_2",
                "accounts": [
                    {
                        "link_ref_number": "c2328fa7-0dcd-2314-asb5-9ef7b4c1cz6b",
                        "fi_status": "READY"
                    }
                ]
            }
        ]
    }
}

Webhook payload fields

The webhook payload contains important metadata in its top-level fields.
FieldTypeDescription
signaturestringA Base64-encoded HMAC-SHA256 signature of the payload, generated using a shared client secret.
event_typestringIndicates the type of event that triggered the webhook.
event_timestringThe UTC timestamp of when the event occurred, formatted in ISO 8601 (YYYY-MM-DDTHH:MM:SSZ).
versionstringIndicates the webhook format being used. Default version is “v1”.
dataobjectContains event-specific details related to this feature.
Verifying the signature is mandatory before processing any response. Refer to Signature Verification for more details.