Get Import Settlement Recon Details
curl --request POST \
--url https://sandbox.cashfree.com/import/settlements/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 '
{
"filters": {
"start_date": "2026-09-01T01:01:01.00+05:30",
"end_date": "2026-09-02T01:01:01.00+05:30",
"cf_ica_settlement_ids": [
123
],
"cf_ica_settlement_utrs": [
"UTR123456789"
]
},
"pagination": {
"limit": 123,
"cursor": "eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=="
}
}
'import requests
url = "https://sandbox.cashfree.com/import/settlements/recon"
payload = {
"filters": {
"start_date": "2026-09-01T01:01:01.00+05:30",
"end_date": "2026-09-02T01:01:01.00+05:30",
"cf_ica_settlement_ids": [123],
"cf_ica_settlement_utrs": ["UTR123456789"]
},
"pagination": {
"limit": 123,
"cursor": "eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=="
}
}
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({
filters: {
start_date: '2026-09-01T01:01:01.00+05:30',
end_date: '2026-09-02T01:01:01.00+05:30',
cf_ica_settlement_ids: [123],
cf_ica_settlement_utrs: ['UTR123456789']
},
pagination: {
limit: 123,
cursor: 'eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=='
}
})
};
fetch('https://sandbox.cashfree.com/import/settlements/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/import/settlements/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([
'filters' => [
'start_date' => '2026-09-01T01:01:01.00+05:30',
'end_date' => '2026-09-02T01:01:01.00+05:30',
'cf_ica_settlement_ids' => [
123
],
'cf_ica_settlement_utrs' => [
'UTR123456789'
]
],
'pagination' => [
'limit' => 123,
'cursor' => 'eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=='
]
]),
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/import/settlements/recon"
payload := strings.NewReader("{\n \"filters\": {\n \"start_date\": \"2026-09-01T01:01:01.00+05:30\",\n \"end_date\": \"2026-09-02T01:01:01.00+05:30\",\n \"cf_ica_settlement_ids\": [\n 123\n ],\n \"cf_ica_settlement_utrs\": [\n \"UTR123456789\"\n ]\n },\n \"pagination\": {\n \"limit\": 123,\n \"cursor\": \"eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ==\"\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/import/settlements/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 \"filters\": {\n \"start_date\": \"2026-09-01T01:01:01.00+05:30\",\n \"end_date\": \"2026-09-02T01:01:01.00+05:30\",\n \"cf_ica_settlement_ids\": [\n 123\n ],\n \"cf_ica_settlement_utrs\": [\n \"UTR123456789\"\n ]\n },\n \"pagination\": {\n \"limit\": 123,\n \"cursor\": \"eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ==\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.cashfree.com/import/settlements/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 \"filters\": {\n \"start_date\": \"2026-09-01T01:01:01.00+05:30\",\n \"end_date\": \"2026-09-02T01:01:01.00+05:30\",\n \"cf_ica_settlement_ids\": [\n 123\n ],\n \"cf_ica_settlement_utrs\": [\n \"UTR123456789\"\n ]\n },\n \"pagination\": {\n \"limit\": 123,\n \"cursor\": \"eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ==\"\n }\n}"
response = http.request(request)
puts response.read_body{
"cursor": "eyJzZWFyY2hBZnRlciI6WzEyOTEyNTA0NjI4ODk1MjgwMzBdLCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ==",
"limit": 1,
"data": [
{
"customer_details": {
"customer_bank_account_number": null,
"customer_bank_code": null,
"customer_bank_ifsc": null,
"customer_email": null,
"customer_id": null,
"customer_name": null,
"customer_phone": null
},
"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": 1,
"event_currency": "INR",
"event_id": "1291250462889527287",
"event_remarks": "NORMAL_SETTLEMENT_CHARGE",
"event_service_charge": null,
"event_service_tax": null,
"event_settlement_amount": 1,
"event_status": null,
"event_time": "2026-02-23T13:39:51+05:30",
"event_type": "NORMAL_SETTLEMENT_CHARGE",
"sale_type": "DEBIT"
},
"order_details": {
"order_amount": null,
"order_currency": null,
"order_id": null,
"order_tags": null
},
"payment_details": {
"bank_reference": null,
"cf_payment_id": null,
"charges_currency": "INR",
"forex_conversion_handling_charge": null,
"forex_conversion_handling_tax": null,
"payment_amount": null,
"payment_currency": null,
"payment_mode": null,
"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_ica_settlement_id": "10019",
"cf_ica_settlement_utr": null,
"payment_from": null,
"payment_till": null,
"reason": null,
"remarks": null,
"service_charge": null,
"service_tax": null,
"settlement_charge": null,
"settlement_initiated_on": null,
"settlement_settled_on": null,
"settlement_tax": null,
"settlement_type": null,
"split_service_charge": null,
"split_service_tax": null,
"vendor_commission": null
}
}
]
}{
"type": "authentication_error",
"message": "authentication Failed",
"code": "request_failed"
}Collect from India
Get Import Settlement Recon Details
This API is used to fetch all events for the provided Settlement IDs.
POST
/
import
/
settlements
/
recon
Get Import Settlement Recon Details
curl --request POST \
--url https://sandbox.cashfree.com/import/settlements/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 '
{
"filters": {
"start_date": "2026-09-01T01:01:01.00+05:30",
"end_date": "2026-09-02T01:01:01.00+05:30",
"cf_ica_settlement_ids": [
123
],
"cf_ica_settlement_utrs": [
"UTR123456789"
]
},
"pagination": {
"limit": 123,
"cursor": "eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=="
}
}
'import requests
url = "https://sandbox.cashfree.com/import/settlements/recon"
payload = {
"filters": {
"start_date": "2026-09-01T01:01:01.00+05:30",
"end_date": "2026-09-02T01:01:01.00+05:30",
"cf_ica_settlement_ids": [123],
"cf_ica_settlement_utrs": ["UTR123456789"]
},
"pagination": {
"limit": 123,
"cursor": "eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=="
}
}
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({
filters: {
start_date: '2026-09-01T01:01:01.00+05:30',
end_date: '2026-09-02T01:01:01.00+05:30',
cf_ica_settlement_ids: [123],
cf_ica_settlement_utrs: ['UTR123456789']
},
pagination: {
limit: 123,
cursor: 'eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=='
}
})
};
fetch('https://sandbox.cashfree.com/import/settlements/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/import/settlements/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([
'filters' => [
'start_date' => '2026-09-01T01:01:01.00+05:30',
'end_date' => '2026-09-02T01:01:01.00+05:30',
'cf_ica_settlement_ids' => [
123
],
'cf_ica_settlement_utrs' => [
'UTR123456789'
]
],
'pagination' => [
'limit' => 123,
'cursor' => 'eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ=='
]
]),
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/import/settlements/recon"
payload := strings.NewReader("{\n \"filters\": {\n \"start_date\": \"2026-09-01T01:01:01.00+05:30\",\n \"end_date\": \"2026-09-02T01:01:01.00+05:30\",\n \"cf_ica_settlement_ids\": [\n 123\n ],\n \"cf_ica_settlement_utrs\": [\n \"UTR123456789\"\n ]\n },\n \"pagination\": {\n \"limit\": 123,\n \"cursor\": \"eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ==\"\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/import/settlements/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 \"filters\": {\n \"start_date\": \"2026-09-01T01:01:01.00+05:30\",\n \"end_date\": \"2026-09-02T01:01:01.00+05:30\",\n \"cf_ica_settlement_ids\": [\n 123\n ],\n \"cf_ica_settlement_utrs\": [\n \"UTR123456789\"\n ]\n },\n \"pagination\": {\n \"limit\": 123,\n \"cursor\": \"eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ==\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.cashfree.com/import/settlements/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 \"filters\": {\n \"start_date\": \"2026-09-01T01:01:01.00+05:30\",\n \"end_date\": \"2026-09-02T01:01:01.00+05:30\",\n \"cf_ica_settlement_ids\": [\n 123\n ],\n \"cf_ica_settlement_utrs\": [\n \"UTR123456789\"\n ]\n },\n \"pagination\": {\n \"limit\": 123,\n \"cursor\": \"eyJzZWFyY2hBZnRlciI6eyJsaXN0IjpbMTg4NjcxNDVdLCJlbXB0eSI6ZmFsc2V9LCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ==\"\n }\n}"
response = http.request(request)
puts response.read_body{
"cursor": "eyJzZWFyY2hBZnRlciI6WzEyOTEyNTA0NjI4ODk1MjgwMzBdLCJyZWNvbkFQSVR5cGUiOiJMRURHRVIifQ==",
"limit": 1,
"data": [
{
"customer_details": {
"customer_bank_account_number": null,
"customer_bank_code": null,
"customer_bank_ifsc": null,
"customer_email": null,
"customer_id": null,
"customer_name": null,
"customer_phone": null
},
"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": 1,
"event_currency": "INR",
"event_id": "1291250462889527287",
"event_remarks": "NORMAL_SETTLEMENT_CHARGE",
"event_service_charge": null,
"event_service_tax": null,
"event_settlement_amount": 1,
"event_status": null,
"event_time": "2026-02-23T13:39:51+05:30",
"event_type": "NORMAL_SETTLEMENT_CHARGE",
"sale_type": "DEBIT"
},
"order_details": {
"order_amount": null,
"order_currency": null,
"order_id": null,
"order_tags": null
},
"payment_details": {
"bank_reference": null,
"cf_payment_id": null,
"charges_currency": "INR",
"forex_conversion_handling_charge": null,
"forex_conversion_handling_tax": null,
"payment_amount": null,
"payment_currency": null,
"payment_mode": null,
"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_ica_settlement_id": "10019",
"cf_ica_settlement_utr": null,
"payment_from": null,
"payment_till": null,
"reason": null,
"remarks": null,
"service_charge": null,
"service_tax": null,
"settlement_charge": null,
"settlement_initiated_on": null,
"settlement_settled_on": null,
"settlement_tax": null,
"settlement_type": null,
"split_service_charge": null,
"split_service_tax": null,
"vendor_commission": null
}
}
]
}{
"type": "authentication_error",
"message": "authentication Failed",
"code": "request_failed"
}Authorizations
XClientID & XClientSecretXClientID & XPartnerAPIKeyXClientID & XClientSignatureHeaderXPartnerMerchantID & XPartnerAPIKeyXPartnerAPIKey & XPartnerType
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
API version to be used. Format is YYYY-MM-DD. Pass 2026-01-01 to invoke this version.
Body
application/json
Response
Success response for getting the import settlement recon details.
Was this page helpful?
⌘I