Note (Custom Statement Format)
If you are using the Custom Statement Format, the V3 dates have to be provided in ISO_8601 format
An example of the ISO_8601: 2022-01-01
Request Body For API UsersResponse
Code Block |
---|
{
"customer": {
"id": "ckq9ehqmv000001me62y85j1u",
"email": "johndoe@company.com",
"lastName": "Doe",
"firstName": "John",
"phone": "8101010110"
},
"bankStatement": {
"type": "custom",
"content": {
"statement": [
{
"id": "112233",
"type": "credit",
"amount": 10000,
"narration": "sample narration",
"date": "2020-03-07 12:02:26",
"balance": 10000
},
{
"id": "112234",
"type": "debit",
"amount": 1000,
"narration": "sample narration",
"date": "2020-03-07 12:02:26",
"balance": 9000
}
]
}
}
} |