TruFIU
  • About
  • Apps
  • FIU Config
    • AA Partner
  • Consents
  • Data
  • AA Notifications
  • Utils
    • Onboarding
    • Redirect
  • OpenAPI Spec
  • Postman Collection
Powered by GitBook
On this page
  1. FIU Config

AA Partner

PreviousFIU ConfigNextConsents

Last updated 7 months ago

As per the RBI regulations for Account Aggregator, an FIU Entity, should to work with any of the regulated AA Entities to get access to the data. FIU may choose to work with one or many AA Entities. These APIs allows you mange the FIU<>AA configurations.

  • PUTConfigure partner AA credentials
  • PUTUpdate AA credentials

Configure partner AA credentials

put
Authorizations
Path parameters
fiu_client_idstringRequired
Body
entity_idstringRequired

your partner AA entity/client ID

Example: AA-SIMULATOR
redirect_secretstringRequired

redirect secret shared by your partner AA

Example: qHVE9GgCeqGP
sahamatinet_enabledbooleanOptionalDefault: false
Responses
201
Successful response
application/json
put
PUT /v1/entities/{fiu_client_id}/aa HTTP/1.1
Host: localhost:8080
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 89

{
  "entity_id": "AA-SIMULATOR",
  "redirect_secret": "qHVE9GgCeqGP",
  "sahamatinet_enabled": false
}
201

Successful response

No content

Update AA credentials

put
Authorizations
Path parameters
fiu_client_idstringRequired
aa_entity_idstringRequired
Body
redirect_secretstringOptional

redirect secret shared by your partner AA

sahamatinet_enabledbooleanOptionalDefault: false
Responses
200
Successful response
application/json
put
PUT /v1/entities/{fiu_client_id}/aa/{aa_entity_id} HTTP/1.1
Host: localhost:8080
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 54

{
  "redirect_secret": "text",
  "sahamatinet_enabled": false
}
200

Successful response

No content