Get Wallet Statements
The Wallet Statement API is utilized to retrieve the pertinent transactions made in the Wallet. The API fetches transactions within the specified date range and provides the Wallet balance.
GET
/payments/wallets/{id}/statement
Body Parameters Request
id
url path
string
Wallet ID for statements for retrieval.
Yes
start
url parameter
string
date-time
end
url parameter
string
date-time
skip
url parameter
integer
number of items to skip in result set
take
url parameter
integer
max items to return in result set
Body Parameters Response
type
string
wallet
id
string
start_date
string
date-time
end_date
string
date-time
items
array
object
items[]
object
items[].type
string
items[].id
string
items[].description
string
items[].execution_id
string
the payment execution id
items[].date
string
date-time
items[].action
string
CREDIT, DEBIT
items[].debit
object
Amount debited from source
items[].debit.amount
number
items[].debit.currency
string
items[].credit
object
amount credited to target
items[].credit.amount
number
items[].credit.currency
string
items[].fees
number
total fees included
items[].rate
number
fx rate used for conversion
items[].balance
number
walllet balance after transaction was completed
items[].counterpart
object
depending on the #action property contains info on the other party (sender/receiver)
items[].counterpart.id
string
items[].counterpart.currency
string
items[].counterpart.bank_details
object
items[].counterpart.bank_details.account_country
string
items[].counterpart.bank_details.account_name
string
items[].counterpart.entity
object
items[].counterpart.active
boolean
items[].counterpart.name
string
items[].counterpart.user_tags
object
items[].user_tags
object
items[].tags
object
paging
object
paging.skip
integer
number of items to skip in result set
paging.take
integer
max items to return in result set
Request Example
Response
Last updated