11/06/2022.
Request
Curl
Response
Success
Parameters
year mandatory
: integer The year the settlement was received in the YYYY format. For example, 2022.
month mandatory
: integer The month the settlement was received in the MM format. For example, 06.
day optional
: integer The date on which the settlement was received in the DD format. For example, 11.
count optional
: integer Specifies the number of available settlements to be fetched. Possible values: 1 to 1000.
skip optional
: integer Specifies the number of available settlements to be skipped when fetching a count.
Parameters
entity_id
: string The unique identifier of the transaction that has been settled.
type
: string Indicates the type of transaction. Possible values:
paymentrefundtransferadjustment
debit
: integer The amount, in currency subunits, that has been debited from your account.
credit
: integer The amount, in currency subunits, that has been credited to your account.
amount
: integer The total amount, in currency subunits, debited or credited from your account.
currency
: string The 3-letter ISO currency code for the transaction.
fee
: integer The fees, in currency subunits, charged to process the transaction.
tax
: integer The tax on the fee, in currency subunits, charged to process the transaction.
on_hold
: boolean Indicates whether the account settlement for transfer is on hold. Possible values:
true: The settlement for transfer is on hold.false: The settlement for transfer is released.
settled
: boolean Indicates whether the transaction has been settled or not. Possible values:
truefalse
created_at
: integer Unix timestamp at which the transaction was created.
settled_at
: integer Unix timestamp when the transaction was settled.
settlement_id
: string The unique identifier of the settlement transaction.
description
: string Brief description about the transaction.
notes
: object Notes for the transaction. For example, Beam me up Scotty.
payment_id
: string The unique identifier of the payment linked to refund or transfer that has been settled. For example, pay_DEApNNTR6xmqJy. It is null for payments.
settlement_utr
: string The unique reference number linked to the settlement. For example, KKBKH14156891582.
order_id
: string Order id linked to the payment made by the customer that has been settled. For example, order_DEXrnRiR3SNDHA.
order_receipt
: string Receipt number entered while creating the Order.
method
: string The payment method used to complete the payment. Possible values:
-
card -
netbanking -
wallet -
upi -
emi
card_network
: string The card network used to process the payment. Possible values:
American ExpressDiners ClubMaestroMasterCardRuPayVisaunknown
card_issuer
: string This is a 4-character code denoting the issuing bank. For example, KARB.
This attribute will not be set for international cards, that is, for cards issued by foreign banks.
card_type
: string The card type used to process the payment. Possible values:
creditdebit
dispute_id
: string The unique identifier of any dispute, if any, for this transaction.
Errors
The API {key/secret} provided is invalid.- code: 4xx
- description: The API credentials passed in the API call differ from the ones generated on the Dashboard.
- solution: The API keys must be active and entered correctly with no whitespace before or after.
- code: 400
- description: An invalid year is entered.
- solution: Ensure that the year has exactly 4 digits.
- code: 400
- description: An invalid month is entered.
- solution: Enter a valid month between
01and12.
- code: 400
- description: An invalid day is entered.
- solution: Ensure that the day has only 1 or 2 digits. Possible values:
1to31.
- code: 400
- description: The count passed is
0. - solution: Ensure that count is at least
1.