🚀 Welcome to our revamped documentation featuring dedicated Business Logic and API sections with improved layouts—please remember to update your bookmarks as old links will no longer work!
curl --request POST \
--url 'https://{{baseUrl}}/amlyze-ws-rest/batch-account-balances' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"accountBalances": [
{
"communicationNumber": "commNumber0",
"requester": "financial_institution",
"balanceType": "STATEMENT_BALANCE",
"accountExtId": "ORG20231117550",
"businessUnit": "sandbox",
"balanceAt": "2023-09-05T08:07:34.605Z",
"value": 11111111111,
"equivalentValue": 33333
},
{
"communicationNumber": "commNumber1",
"requester": "financial_institution",
"balanceType": "STATEMENT_BALANCE",
"accountExtId": "ACC_744251ab-d599-473e-a79f-8bd993a8b33e",
"businessUnit": "sandbox",
"balanceAt": "2023-09-05T08:07:34.605Z",
"value": 11111111111
}
]
}
'{
"results": [
{
"resultType": "REQUEST_ACCEPTED",
"communicationNumber": "comNumber0",
"accountExtId": "accountExtId0",
"businessUnit": "sandbox",
"timeElapsedMs": 203
},
{
"resultType": "REQUEST_REJECTED",
"communicationNumber": "comNumber1",
"accountExtId": "accountExtId1",
"businessUnit": "sandbox",
"errorCode": "O005",
"errorDescription": "CommunicationNumber already used in amlyze",
"timeElapsedMs": 20
}
],
"timeElapsedMs": 223
}curl --request POST \
--url 'https://{{baseUrl}}/amlyze-ws-rest/batch-account-balances' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"accountBalances": [
{
"communicationNumber": "commNumber0",
"requester": "financial_institution",
"balanceType": "STATEMENT_BALANCE",
"accountExtId": "ORG20231117550",
"businessUnit": "sandbox",
"balanceAt": "2023-09-05T08:07:34.605Z",
"value": 11111111111,
"equivalentValue": 33333
},
{
"communicationNumber": "commNumber1",
"requester": "financial_institution",
"balanceType": "STATEMENT_BALANCE",
"accountExtId": "ACC_744251ab-d599-473e-a79f-8bd993a8b33e",
"businessUnit": "sandbox",
"balanceAt": "2023-09-05T08:07:34.605Z",
"value": 11111111111
}
]
}
'{
"results": [
{
"resultType": "REQUEST_ACCEPTED",
"communicationNumber": "comNumber0",
"accountExtId": "accountExtId0",
"businessUnit": "sandbox",
"timeElapsedMs": 203
},
{
"resultType": "REQUEST_REJECTED",
"communicationNumber": "comNumber1",
"accountExtId": "accountExtId1",
"businessUnit": "sandbox",
"errorCode": "O005",
"errorDescription": "CommunicationNumber already used in amlyze",
"timeElapsedMs": 20
}
],
"timeElapsedMs": 223
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A list of account balances to register
Show child attributes