POST
/
api
/
v2
/
subscriptions
/
charge
/
{paymentId}
/
transaction-return-summary
/
generate
curl --request POST \
  --url https://sandbox.cashfree.com/api/v2/subscriptions/charge/{paymentId}/transaction-return-summary/generate \
  --header 'X-Client-Id: <x-client-id>' \
  --header 'X-Client-Secret: <x-client-secret>'
{
"status": 200,
"message": "Transaction return summary status fetched successfully.",
"data": {
"paymentId": 123456,
"status": "GENERATED",
"link": "<download-link>"
}
}

Headers

X-Client-Id
string
required

Client ID provided by Cashfree.

Example:

"asdf1234"

X-Client-Secret
string
required

Client Secret provided by Cashfree.

Example:

"qwer9876"

Path Parameters

paymentId
integer
required

The ID of the payment whose transaction return summary is to be generated.

Example:

123456

Response

200
application/json

Successful generation of the transaction return summary.

The response is of type any.