curl --request POST \
--url https://sandbox.cashfree.com/pg/recon \
--header 'Content-Type: application/json' \
--header 'x-api-version: <x-api-version>' \
--header 'x-client-id: <api-key>' \
--header 'x-client-secret: <api-key>' \
--data '
{
"pagination": {
"limit": 10,
"cursor": "eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=="
},
"filters": {
"start_date": "2022-07-20T00:00:00Z",
"end_date": "2022-07-21T23:59:59Z"
}
}
'import requests
url = "https://sandbox.cashfree.com/pg/recon"
payload = {
"pagination": {
"limit": 10,
"cursor": "eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=="
},
"filters": {
"start_date": "2022-07-20T00:00:00Z",
"end_date": "2022-07-21T23:59:59Z"
}
}
headers = {
"x-api-version": "<x-api-version>",
"x-client-id": "<api-key>",
"x-client-secret": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-api-version': '<x-api-version>',
'x-client-id': '<api-key>',
'x-client-secret': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
pagination: {
limit: 10,
cursor: 'eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=='
},
filters: {start_date: '2022-07-20T00:00:00Z', end_date: '2022-07-21T23:59:59Z'}
})
};
fetch('https://sandbox.cashfree.com/pg/recon', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.cashfree.com/pg/recon",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'pagination' => [
'limit' => 10,
'cursor' => 'eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=='
],
'filters' => [
'start_date' => '2022-07-20T00:00:00Z',
'end_date' => '2022-07-21T23:59:59Z'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-version: <x-api-version>",
"x-client-id: <api-key>",
"x-client-secret: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox.cashfree.com/pg/recon"
payload := strings.NewReader("{\n \"pagination\": {\n \"limit\": 10,\n \"cursor\": \"eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ==\"\n },\n \"filters\": {\n \"start_date\": \"2022-07-20T00:00:00Z\",\n \"end_date\": \"2022-07-21T23:59:59Z\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-version", "<x-api-version>")
req.Header.Add("x-client-id", "<api-key>")
req.Header.Add("x-client-secret", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://sandbox.cashfree.com/pg/recon")
.header("x-api-version", "<x-api-version>")
.header("x-client-id", "<api-key>")
.header("x-client-secret", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"pagination\": {\n \"limit\": 10,\n \"cursor\": \"eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ==\"\n },\n \"filters\": {\n \"start_date\": \"2022-07-20T00:00:00Z\",\n \"end_date\": \"2022-07-21T23:59:59Z\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.cashfree.com/pg/recon")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-version"] = '<x-api-version>'
request["x-client-id"] = '<api-key>'
request["x-client-secret"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"pagination\": {\n \"limit\": 10,\n \"cursor\": \"eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ==\"\n },\n \"filters\": {\n \"start_date\": \"2022-07-20T00:00:00Z\",\n \"end_date\": \"2022-07-21T23:59:59Z\"\n }\n}"
response = http.request(request)
puts response.read_body{
"cursor": "cursor-uid",
"limit": 10,
"data": [
{
"customer_details": {
"customer_bank_account_number": null,
"customer_bank_code": null,
"customer_bank_ifsc": null,
"customer_email": "cashfreesdet+pwynht20250910112529373@gmail.com",
"customer_id": null,
"customer_name": "Charlie",
"customer_phone": "9892566583"
},
"dispute_details": {
"closed_in_favor_of": null,
"dispute_category": null,
"dispute_note": null,
"dispute_resolved_on": null,
"resolved_on": null
},
"event_details": {
"entity": "recon",
"event_amount": 0,
"event_currency": "INR",
"event_id": "5114920543991",
"event_remarks": null,
"event_service_charge": null,
"event_service_tax": null,
"event_settlement_amount": null,
"event_status": "FAILED",
"event_time": "2025-09-10T16:55:56+05:30",
"event_type": "PAYMENT",
"sale_type": "CREDIT"
},
"order_details": {
"order_amount": 4000,
"order_currency": null,
"order_id": "Automated_Test_202509101125293419855069112",
"order_tags": null
},
"payment_details": {
"bank_reference": null,
"cf_payment_id": "5114920543991",
"charges_currency": "INR",
"forex_conversion_handling_charge": null,
"forex_conversion_handling_tax": null,
"payment_amount": null,
"payment_currency": null,
"payment_group": "CREDIT_CARD_EMI",
"payment_service_charge": null,
"payment_service_tax": null,
"payment_time": null,
"status": null
},
"refund_details": {
"refund_arn": null,
"refund_id": null,
"refund_note": null,
"refund_processed_at": null
},
"settlement_details": {
"adjustment": null,
"amount_settled": null,
"cf_settlement_id": "",
"payment_from": null,
"payment_till": null,
"reason": null,
"remarks": null,
"service_charge": null,
"service_tax": null,
"settlement_charge": null,
"settlement_date": null,
"settlement_initiated_on": null,
"settlement_tax": null,
"settlement_type": null,
"split_service_charge": null,
"split_service_tax": null,
"utr": null,
"vendor_commission": null
}
},
{
"customer_details": {
"customer_bank_account_number": "9876543210",
"customer_bank_code": "HDFC001",
"customer_bank_ifsc": "HDFC0001234",
"customer_email": "charlie.doe@example.com",
"customer_id": "CUST12345",
"customer_name": "Charlie Doe",
"customer_phone": "9123456789"
},
"dispute_details": {
"closed_in_favor_of": "merchant",
"dispute_category": "Fraudulent Transaction",
"dispute_note": "Customer raised a chargeback for unauthorized use",
"dispute_resolved_on": "2025-09-12T10:30:00+05:30",
"resolved_on": "2025-09-12T10:30:00+05:30"
},
"event_details": {
"entity": "recon",
"event_amount": 4000,
"event_currency": "INR",
"event_id": "EVT987654321",
"event_remarks": "Payment captured successfully",
"event_service_charge": 40,
"event_service_tax": 7.2,
"event_settlement_amount": 3952.8,
"event_status": "SUCCESS",
"event_time": "2025-09-11T14:45:20+05:30",
"event_type": "PAYMENT",
"sale_type": "CREDIT"
},
"order_details": {
"order_amount": 4000,
"order_currency": "INR",
"order_id": "order_20250911XYZ987654",
"order_tags": {
"category": "Electronics",
"device": "Mobile"
}
},
"payment_details": {
"bank_reference": "BR123456789",
"cf_payment_id": "PAY9876543210",
"charges_currency": "INR",
"forex_conversion_handling_charge": 0,
"forex_conversion_handling_tax": 0,
"payment_amount": 4000,
"payment_currency": "INR",
"payment_group": "CREDIT_CARD_EMI",
"payment_service_charge": 40,
"payment_service_tax": 7.2,
"payment_time": "2025-09-11T14:45:18+05:30",
"status": "SUCCESS"
},
"refund_details": {
"refund_arn": "ARN1234567890",
"refund_id": "REF9876543210",
"refund_note": "Customer requested refund for damaged product",
"refund_processed_at": "2025-09-12T11:15:00+05:30"
},
"settlement_details": {
"adjustment": "None",
"amount_settled": 3952.8,
"cf_settlement_id": "SETT987654321",
"payment_from": "2025-09-11T00:00:00+05:30",
"payment_till": "2025-09-11T23:59:59+05:30",
"reason": "Normal Settlement",
"remarks": "Settled within T+1 cycle",
"service_charge": 40,
"service_tax": 7.2,
"settlement_charge": 47.2,
"settlement_date": "2025-09-12T18:30:00+05:30",
"settlement_initiated_on": "2025-09-12T15:00:00+05:30",
"settlement_tax": 7.2,
"settlement_type": "DAILY",
"split_service_charge": 0,
"split_service_tax": 0,
"utr": "HDFC20250912UTR12345",
"vendor_commission": 0
}
},
{
"customer_details": {
"customer_bank_account_number": null,
"customer_bank_code": null,
"customer_bank_ifsc": null,
"customer_email": "cashfreesdet+mmmmgf20250910112620666@gmail.com",
"customer_id": null,
"customer_name": "Sharyl",
"customer_phone": "9875662870"
},
"dispute_details": {
"closed_in_favor_of": null,
"dispute_category": null,
"dispute_note": null,
"dispute_resolved_on": null,
"resolved_on": null
},
"event_details": {
"entity": "recon",
"event_amount": 0,
"event_currency": "INR",
"event_id": "5114920544087",
"event_remarks": null,
"event_service_charge": null,
"event_service_tax": null,
"event_settlement_amount": null,
"event_status": "PENDING",
"event_time": "2025-09-10T16:56:21+05:30",
"event_type": "PAYMENT",
"sale_type": "CREDIT"
},
"order_details": {
"order_amount": 0,
"order_currency": null,
"order_id": "payment_202509101126201757503580894",
"order_tags": null
},
"payment_details": {
"bank_reference": null,
"cf_payment_id": "5114920544087",
"charges_currency": "INR",
"forex_conversion_handling_charge": null,
"forex_conversion_handling_tax": null,
"payment_amount": null,
"payment_currency": null,
"payment_group": "SBC_PHYSICAL_MANDATE_SAVING",
"payment_service_charge": null,
"payment_service_tax": null,
"payment_time": null,
"status": null
},
"refund_details": {
"refund_arn": null,
"refund_id": null,
"refund_note": null,
"refund_processed_at": null
},
"settlement_details": {
"adjustment": null,
"amount_settled": null,
"cf_settlement_id": "",
"payment_from": null,
"payment_till": null,
"reason": null,
"remarks": null,
"service_charge": null,
"service_tax": null,
"settlement_charge": null,
"settlement_date": null,
"settlement_initiated_on": null,
"settlement_tax": null,
"settlement_type": null,
"split_service_charge": null,
"split_service_tax": null,
"utr": null,
"vendor_commission": null
}
}
]
}{
"message": "bad URL, please check API documentation",
"help": "Check latest errors and resolution from Merchant Dashboard API logs: https://bit.ly/4glEd0W Help Document: https://bit.ly/4eeZYO9",
"code": "request_failed",
"type": "invalid_request_error"
}{
"message": "authentication Failed",
"code": "request_failed",
"type": "authentication_error"
}{
"message": "something is not found",
"help": "Check latest errors and resolution from Merchant Dashboard API logs: https://bit.ly/4glEd0W Help Document: https://bit.ly/4eeZYO9",
"code": "something_not_found",
"type": "invalid_request_error"
}{
"message": "order with same id is already present",
"help": "Check latest errors and resolution from Merchant Dashboard API logs: https://bit.ly/4glEd0W Help Document: https://bit.ly/4eeZYO9",
"code": "order_already_exists",
"type": "invalid_request_error"
}{
"message": "something is not found",
"help": "Check latest errors and resolution from Merchant Dashboard API logs: https://bit.ly/4glEd0W Help Document: https://bit.ly/4eeZYO9",
"code": "request_invalid",
"type": "idempotency_error"
}{
"message": "Too many requests from IP. Check headers",
"code": "request_failed",
"type": "rate_limit_error"
}{
"message": "internal Server Error",
"help": "Check latest errors and resolution from Merchant Dashboard API logs: https://bit.ly/4glEd0W Help Document: https://bit.ly/4eeZYO9",
"code": "internal_error",
"type": "api_error"
}PG Reconciliation
- Use this API to get the payment gateway reconciliation details with date range.
- It will have events for your payment account
curl --request POST \
--url https://sandbox.cashfree.com/pg/recon \
--header 'Content-Type: application/json' \
--header 'x-api-version: <x-api-version>' \
--header 'x-client-id: <api-key>' \
--header 'x-client-secret: <api-key>' \
--data '
{
"pagination": {
"limit": 10,
"cursor": "eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=="
},
"filters": {
"start_date": "2022-07-20T00:00:00Z",
"end_date": "2022-07-21T23:59:59Z"
}
}
'import requests
url = "https://sandbox.cashfree.com/pg/recon"
payload = {
"pagination": {
"limit": 10,
"cursor": "eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=="
},
"filters": {
"start_date": "2022-07-20T00:00:00Z",
"end_date": "2022-07-21T23:59:59Z"
}
}
headers = {
"x-api-version": "<x-api-version>",
"x-client-id": "<api-key>",
"x-client-secret": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-api-version': '<x-api-version>',
'x-client-id': '<api-key>',
'x-client-secret': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
pagination: {
limit: 10,
cursor: 'eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=='
},
filters: {start_date: '2022-07-20T00:00:00Z', end_date: '2022-07-21T23:59:59Z'}
})
};
fetch('https://sandbox.cashfree.com/pg/recon', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.cashfree.com/pg/recon",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'pagination' => [
'limit' => 10,
'cursor' => 'eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=='
],
'filters' => [
'start_date' => '2022-07-20T00:00:00Z',
'end_date' => '2022-07-21T23:59:59Z'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-version: <x-api-version>",
"x-client-id: <api-key>",
"x-client-secret: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox.cashfree.com/pg/recon"
payload := strings.NewReader("{\n \"pagination\": {\n \"limit\": 10,\n \"cursor\": \"eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ==\"\n },\n \"filters\": {\n \"start_date\": \"2022-07-20T00:00:00Z\",\n \"end_date\": \"2022-07-21T23:59:59Z\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-version", "<x-api-version>")
req.Header.Add("x-client-id", "<api-key>")
req.Header.Add("x-client-secret", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://sandbox.cashfree.com/pg/recon")
.header("x-api-version", "<x-api-version>")
.header("x-client-id", "<api-key>")
.header("x-client-secret", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"pagination\": {\n \"limit\": 10,\n \"cursor\": \"eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ==\"\n },\n \"filters\": {\n \"start_date\": \"2022-07-20T00:00:00Z\",\n \"end_date\": \"2022-07-21T23:59:59Z\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.cashfree.com/pg/recon")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-version"] = '<x-api-version>'
request["x-client-id"] = '<api-key>'
request["x-client-secret"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"pagination\": {\n \"limit\": 10,\n \"cursor\": \"eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ==\"\n },\n \"filters\": {\n \"start_date\": \"2022-07-20T00:00:00Z\",\n \"end_date\": \"2022-07-21T23:59:59Z\"\n }\n}"
response = http.request(request)
puts response.read_body{
"cursor": "cursor-uid",
"limit": 10,
"data": [
{
"customer_details": {
"customer_bank_account_number": null,
"customer_bank_code": null,
"customer_bank_ifsc": null,
"customer_email": "cashfreesdet+pwynht20250910112529373@gmail.com",
"customer_id": null,
"customer_name": "Charlie",
"customer_phone": "9892566583"
},
"dispute_details": {
"closed_in_favor_of": null,
"dispute_category": null,
"dispute_note": null,
"dispute_resolved_on": null,
"resolved_on": null
},
"event_details": {
"entity": "recon",
"event_amount": 0,
"event_currency": "INR",
"event_id": "5114920543991",
"event_remarks": null,
"event_service_charge": null,
"event_service_tax": null,
"event_settlement_amount": null,
"event_status": "FAILED",
"event_time": "2025-09-10T16:55:56+05:30",
"event_type": "PAYMENT",
"sale_type": "CREDIT"
},
"order_details": {
"order_amount": 4000,
"order_currency": null,
"order_id": "Automated_Test_202509101125293419855069112",
"order_tags": null
},
"payment_details": {
"bank_reference": null,
"cf_payment_id": "5114920543991",
"charges_currency": "INR",
"forex_conversion_handling_charge": null,
"forex_conversion_handling_tax": null,
"payment_amount": null,
"payment_currency": null,
"payment_group": "CREDIT_CARD_EMI",
"payment_service_charge": null,
"payment_service_tax": null,
"payment_time": null,
"status": null
},
"refund_details": {
"refund_arn": null,
"refund_id": null,
"refund_note": null,
"refund_processed_at": null
},
"settlement_details": {
"adjustment": null,
"amount_settled": null,
"cf_settlement_id": "",
"payment_from": null,
"payment_till": null,
"reason": null,
"remarks": null,
"service_charge": null,
"service_tax": null,
"settlement_charge": null,
"settlement_date": null,
"settlement_initiated_on": null,
"settlement_tax": null,
"settlement_type": null,
"split_service_charge": null,
"split_service_tax": null,
"utr": null,
"vendor_commission": null
}
},
{
"customer_details": {
"customer_bank_account_number": "9876543210",
"customer_bank_code": "HDFC001",
"customer_bank_ifsc": "HDFC0001234",
"customer_email": "charlie.doe@example.com",
"customer_id": "CUST12345",
"customer_name": "Charlie Doe",
"customer_phone": "9123456789"
},
"dispute_details": {
"closed_in_favor_of": "merchant",
"dispute_category": "Fraudulent Transaction",
"dispute_note": "Customer raised a chargeback for unauthorized use",
"dispute_resolved_on": "2025-09-12T10:30:00+05:30",
"resolved_on": "2025-09-12T10:30:00+05:30"
},
"event_details": {
"entity": "recon",
"event_amount": 4000,
"event_currency": "INR",
"event_id": "EVT987654321",
"event_remarks": "Payment captured successfully",
"event_service_charge": 40,
"event_service_tax": 7.2,
"event_settlement_amount": 3952.8,
"event_status": "SUCCESS",
"event_time": "2025-09-11T14:45:20+05:30",
"event_type": "PAYMENT",
"sale_type": "CREDIT"
},
"order_details": {
"order_amount": 4000,
"order_currency": "INR",
"order_id": "order_20250911XYZ987654",
"order_tags": {
"category": "Electronics",
"device": "Mobile"
}
},
"payment_details": {
"bank_reference": "BR123456789",
"cf_payment_id": "PAY9876543210",
"charges_currency": "INR",
"forex_conversion_handling_charge": 0,
"forex_conversion_handling_tax": 0,
"payment_amount": 4000,
"payment_currency": "INR",
"payment_group": "CREDIT_CARD_EMI",
"payment_service_charge": 40,
"payment_service_tax": 7.2,
"payment_time": "2025-09-11T14:45:18+05:30",
"status": "SUCCESS"
},
"refund_details": {
"refund_arn": "ARN1234567890",
"refund_id": "REF9876543210",
"refund_note": "Customer requested refund for damaged product",
"refund_processed_at": "2025-09-12T11:15:00+05:30"
},
"settlement_details": {
"adjustment": "None",
"amount_settled": 3952.8,
"cf_settlement_id": "SETT987654321",
"payment_from": "2025-09-11T00:00:00+05:30",
"payment_till": "2025-09-11T23:59:59+05:30",
"reason": "Normal Settlement",
"remarks": "Settled within T+1 cycle",
"service_charge": 40,
"service_tax": 7.2,
"settlement_charge": 47.2,
"settlement_date": "2025-09-12T18:30:00+05:30",
"settlement_initiated_on": "2025-09-12T15:00:00+05:30",
"settlement_tax": 7.2,
"settlement_type": "DAILY",
"split_service_charge": 0,
"split_service_tax": 0,
"utr": "HDFC20250912UTR12345",
"vendor_commission": 0
}
},
{
"customer_details": {
"customer_bank_account_number": null,
"customer_bank_code": null,
"customer_bank_ifsc": null,
"customer_email": "cashfreesdet+mmmmgf20250910112620666@gmail.com",
"customer_id": null,
"customer_name": "Sharyl",
"customer_phone": "9875662870"
},
"dispute_details": {
"closed_in_favor_of": null,
"dispute_category": null,
"dispute_note": null,
"dispute_resolved_on": null,
"resolved_on": null
},
"event_details": {
"entity": "recon",
"event_amount": 0,
"event_currency": "INR",
"event_id": "5114920544087",
"event_remarks": null,
"event_service_charge": null,
"event_service_tax": null,
"event_settlement_amount": null,
"event_status": "PENDING",
"event_time": "2025-09-10T16:56:21+05:30",
"event_type": "PAYMENT",
"sale_type": "CREDIT"
},
"order_details": {
"order_amount": 0,
"order_currency": null,
"order_id": "payment_202509101126201757503580894",
"order_tags": null
},
"payment_details": {
"bank_reference": null,
"cf_payment_id": "5114920544087",
"charges_currency": "INR",
"forex_conversion_handling_charge": null,
"forex_conversion_handling_tax": null,
"payment_amount": null,
"payment_currency": null,
"payment_group": "SBC_PHYSICAL_MANDATE_SAVING",
"payment_service_charge": null,
"payment_service_tax": null,
"payment_time": null,
"status": null
},
"refund_details": {
"refund_arn": null,
"refund_id": null,
"refund_note": null,
"refund_processed_at": null
},
"settlement_details": {
"adjustment": null,
"amount_settled": null,
"cf_settlement_id": "",
"payment_from": null,
"payment_till": null,
"reason": null,
"remarks": null,
"service_charge": null,
"service_tax": null,
"settlement_charge": null,
"settlement_date": null,
"settlement_initiated_on": null,
"settlement_tax": null,
"settlement_type": null,
"split_service_charge": null,
"split_service_tax": null,
"utr": null,
"vendor_commission": null
}
}
]
}{
"message": "bad URL, please check API documentation",
"help": "Check latest errors and resolution from Merchant Dashboard API logs: https://bit.ly/4glEd0W Help Document: https://bit.ly/4eeZYO9",
"code": "request_failed",
"type": "invalid_request_error"
}{
"message": "authentication Failed",
"code": "request_failed",
"type": "authentication_error"
}{
"message": "something is not found",
"help": "Check latest errors and resolution from Merchant Dashboard API logs: https://bit.ly/4glEd0W Help Document: https://bit.ly/4eeZYO9",
"code": "something_not_found",
"type": "invalid_request_error"
}{
"message": "order with same id is already present",
"help": "Check latest errors and resolution from Merchant Dashboard API logs: https://bit.ly/4glEd0W Help Document: https://bit.ly/4eeZYO9",
"code": "order_already_exists",
"type": "invalid_request_error"
}{
"message": "something is not found",
"help": "Check latest errors and resolution from Merchant Dashboard API logs: https://bit.ly/4glEd0W Help Document: https://bit.ly/4eeZYO9",
"code": "request_invalid",
"type": "idempotency_error"
}{
"message": "Too many requests from IP. Check headers",
"code": "request_failed",
"type": "rate_limit_error"
}{
"message": "internal Server Error",
"help": "Check latest errors and resolution from Merchant Dashboard API logs: https://bit.ly/4glEd0W Help Document: https://bit.ly/4eeZYO9",
"code": "internal_error",
"type": "api_error"
}Authorizations
Client app ID. You can find your app id in the Merchant Dashboard.
Client secret key. You can find your secret key in the Merchant Dashboard.
Headers
application/json.
API version to be used.
Request ID for the API call. Can be used to resolve tech issues. Communicate this in your tech related queries to Cashfree.
An idempotency key is a unique identifier you include with your API call. If the request fails or times out, you can safely retry it using the same key to avoid duplicate actions.
application/json.
Body
Request parameters to get the payment gateway reconciliation details with date range.
To fetch the next set of settlements, pass the cursor received in the response to the next API call. To receive the data for the first time, pass the cursor as null. Limit would be number of settlements that you want to receive.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?