MONO, OKRA and DOJAH Statements
Body Parameter Name | Required | Type | Body Parameter Description |
---|---|---|---|
statementName | Yes | string | A unique name for a statement. |
clientFullName | No | string | The full name of the consumer for which the statement is being analyzed. |
bankName | No | string | The name of the bank which issued the statement |
accountType | No | string | The type of account. |
accountName | No | string | The name of the account. |
transactions | Yes | array | An array of transactions |
transactions[i].date | Yes | Date string (preferably in ISO 8601 format: ex. yyyy-MM-dd) | A date representation of when the transaction occurred. Preferably in ISO 8601. |
transactions[i].description | Yes | string | A description of the transaction |
transactions[i].balance | Yes | double | A balance of the account when the transaction occurred. |
transactions[i].amount | Yes | double | The amount of money in the transaction. |
transactions[i].type | Yes | string | The type of transaction, must be either DEBIT or CREDIT. |
Additional Notes
A minimum of ten transactions are required, otherwise a 404 bad request will be returned by the Insights API.