⚙️ Configuration parameters required by the customer
| Parameter | Name | Description |
|---|---|---|
Endpoint | URL | Url specifying the endPoint where to send the event. |
📢 Considerations
Authentication
By authentication type (Basic or OAuth2) the following data is requested (required):
-
OAuth2: Username, Password, AuthEndPoint
Username: User name.Password: User password.AuthEndPoint: Authentication endPoint Url.
-
Basic: Username, Password
Username: User name.Password: User password.
The events (notifications) will be sent to the registered endPoints in JSON format. Therefore a server capable of handling events and converting them to a format compatible with the target application must be configured.
📩 Receipt of a notification
If the process was successful, the client server will receive the payload with the event information (notification).
The following data is sent per webhook type:
➾ Type Conciliation document notification
-
Request webhook
{ "FileUrl": "string", "BankId": "BLNI", "Date": "2017-10-27T17:31:08.058Z", "Summary": { "TotalProcessedAccounts": number, "TotalAccounts": number, "UnprocessedAccounts": [ "string1", "String2" ], "NotAllowedAccounts": [ "string1", "String2" ], "AlreadyProcessedAccounts": [ "string1", "String2" ] } } -
Detail of outgoing JSON members of the process
JSON Member Name Description Type FileUrlURL. Url of the file in S3. Reconciliation by country and client. stringBankIdOriginating bank. Originating bank code. stringDateReconciliation date. Reconciliation date. dateSummaryReconciliation data. Object containing the reconciliation data. objectSummary.TotalProcessedAccountsTotal processed. Total transfers processed correctly. numberSummary.TotalAccountsTotal accounts. Total accounts, including successful and unsuccessful accounts. numberSummary.UnprocessedAccounts[]Total accounts not processed. List of unprocessed accounts. array of stringSummary.NotAllowedAccounts[]Total accounts not allowed. List of accounts without consent. array of stringSummary.AlreadyProcessedAccounts[]Previously processed. List of accounts processed prior to the same day, therefore the application is excluded. array of string
