Get Wallet Statement
Retrieves a paginated wallet statement for a user, including both credit and debit transactions for a specific sub-wallet.
- The statement can be fetched for a specified date range. If no range is provided, the API returns transactions from the last 6 months.
- The
fromdate cannot be earlier than 1 year from the current date. - Pagination is handled using the
afterandbeforeparameters, which define thecf_statement_idboundary for retrieving the next or previous set of records. - Only one of
afterorbeforecan be passed at a time.
Authorizations
Your unique client identifier issued by Cashfree. You can find this in your Merchant Dashboard.
The secret key associated with your client ID. Use this to authenticate your API requests. You can find this in your Merchant Dashboard.
Headers
API version to be used. Format is in YYYY-MM-DD.
"2025-11-01"
Body
Request parameters to fetch the user's wallet statement for a given period.
Unique identifier for the user, as provided by you during PPI user creation.
50^[a-zA-Z0-9_.-]+$Unique identifier for the wallet, as provided by you during wallet creation.
50^[a-zA-Z0-9_.-]+$"WALLET124"
Unique identifier for the sub-wallet provided in response while creating the wallet.
50^[0-9]+$"5432109876543210987"
Start date for the wallet statement in UTC. If not provided, the API defaults to 6 months before the current date-time. It cannot be earlier than 1 year from the current date
"2025-01-01T00:00:00Z"
End date for the wallet statement in UTC. If not provided, the API defaults to the current date-time. Cannot be greater than the current date-time.
"2025-02-01T00:00:00Z"
Maximum number of records to return. Default value is 10.
x <= 5010
The cf_statement_id after which statement should be fetched. When after is provided, the before parameter must not be used.
"5432109876543210987"
The cf_statement_id before which statement should be fetched. When before is provided, the after parameter must not be used.
"5432109876543210987"
Response
Success response for fetching the wallet statement.
Unique identifier for the wallet, as provided by you during wallet creation.
"WALLET124"
Unique identifier for the user, as provided by you during user creation.
"USER827364"
Indicates whether there are additional transactions after the current set within the requested statement period.
true
Indicates whether there are additional transactions before the current set within the requested statement period..
true