Skip to main content
Version: 1.0.0

Get Cash Statement

GET 

/cash-statement

This is used to get the pdf format of a cash statement for a given cash account of a given customer. This includes details about all the cash transactions that happened during the given period on a given cash account.

Request

Query Parameters

    month integerrequired

    Possible values: >= 1 and <= 12

    if current year is given, month must be current month or a previous month

    year integerrequired

    only accepts cuurent year or a previous year

    Example: 2022

    customerNumber stringrequired

    Possible values: <= 20 characters

    accountNumber string

    Possible values: <= 50 characters

    Security account number

    cashAccountNumber string

    Possible values: <= 50 characters

    Cash account number

    contentType stringrequired

    currently only accepts json format

    Example: json

Responses

OK

Schema
    status string
    reason string
    rejectCode integer
    customerNumber string
    month integer
    year integer
    period string
    list object[]
  • Array [
  • cashAccountNumber string
    currency string
    tradeOpeningBalance number
    settledOpeningBalance number
    deposit number
    withdraw number
    buy number
    sell number
    futureBlock number
    other number
    tradeClosingBalance number
    settledClosingBalance number
    list object[]
  • Array [
  • transactionDate string

    Possible values: Value must match regular expression ^[0-9]{4}/(0[1-9]|1[0-2])/(0[1-9]|[1-2][0-9]|3[0-1])$

    valueDate string

    Possible values: Value must match regular expression ^[0-9]{4}/(0[1-9]|1[0-2])/(0[1-9]|[1-2][0-9]|3[0-1])$

    description string
    debit number
    credit number
    tradeBalance number
    settledBalance number
  • ]
  • ]
Loading...
Is this page helpful for you?