FIU API v2.0.0

FIU Endpoints are the list of endpoints that you will need to implement on your system to receive Consent and FI notifications from AA.

Please refer the FIU API Spec (2.0.0) https://api.rebit.org.in/spec/fiu in the ReBIT to implement the responses for different cases. The APIs below only has success response.

API signature verification

You need to verify the API calls that you receive from the AA. Use Saafe's public key available in the Central Registry to verify the API request that Saafe made to your FIU endpoints.

You can refer AA Commons Documentation for how to verify the request that you receive from AA.

POST {your-base-url}/Consent/Notification

Request

Header

Key
Value

x-jws-signature

string

aa_api_key

string

Body

{
    "ver": "2.0.0",
    "timestamp": "2024-05-09T15:40:45.717Z",
    "txnid": "019fe3f7-edd6-45ac-9f29-24fad3e504ca",
    "Notifier": {
        "type": "AA",
        "id": "dashboard-aa-preprod"
    },
    "ConsentStatusNotification": {
        "consentId": "5278f924-2d15-4726-a974-2465cbf48d5c",
        "consentHandle": "465d1f35-f716-484f-a38e-30797d97b525",
        "consentStatus": "ACTIVE"
    }
}

Response 200

Header

Key
Value

x-jws-signature

string

Body

FI Notification

POST {your-base-url}/FI/Notification

Request

Header

Key
Value

x-jws-signature

string

aa_api_key

string

Body

Response 200

Header

Key
Value

x-jws-signature

string

Body

Last updated

Was this helpful?