Skip to main content
POST
Get Wallet Statement

Authorizations

x-client-id
string
header
required

Your unique client identifier issued by Cashfree. You can find this in your Merchant Dashboard.

x-client-secret
string
header
required

The secret key associated with your client ID. Use this to authenticate your API requests. You can find this in your Merchant Dashboard.

Headers

x-api-version
string
default:2025-11-01
required

API version to be used. Format is in YYYY-MM-DD.

Example:

"2025-11-01"

Body

application/json

Request parameters to fetch the user's wallet statement for a given period.

user_id
string
required

Unique identifier for the user, as provided by you during PPI user creation. Only alphanumeric characters, periods (.), hyphens (-), and underscores (_) are allowed.

Required string length: 1 - 50
wallet_id
string
required

Unique identifier for the wallet, as provided by you during wallet creation. Only alphanumeric characters, periods (.), hyphens (-), and underscores (_) are allowed.

Required string length: 1 - 50
Example:

"WALLET124"

cf_sub_wallet_id
string
required

Unique identifier for the sub-wallet provided in response while creating the wallet. Only numeric characters are allowed.

Required string length: 1 - 19
Example:

"5432109876543210987"

from
string<date-time>

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

Example:

"2025-01-01T00:00:00Z"

to
string<date-time>

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.

Example:

"2025-02-01T00:00:00Z"

limit
integer

Maximum number of records to return. Default value is 10.

Required range: x <= 50
Example:

10

after
string

The cf_statement_id after which statement should be fetched. When after is provided, the before parameter must not be used.

Example:

"5432109876543210987"

before
string

The cf_statement_id before which statement should be fetched. When before is provided, the after parameter must not be used.

Example:

"5432109876543210987"

Response

Success response for fetching the wallet statement.

wallet_id
string

Unique identifier for the wallet, as provided by you during wallet creation.

Example:

"WALLET124"

user_id
string

Unique identifier for the user, as provided by you during user creation.

Example:

"USER827364"

has_next
boolean

Indicates whether there are additional transactions after the current set within the requested statement period.

Example:

true

has_prev
boolean

Indicates whether there are additional transactions before the current set within the requested statement period..

Example:

true

sub_wallet
object
statement_period
object
statements
object[]