v2025-01-01
- Overview
- Orders
- Payments
- Payment Links
- Refunds
- Customers
- Payment Methods
- Offers
- Settlements
- Simulation
- Utilities
Create Cashgram
Use this API to create a Cashgram.
POST
/
payout
/
v1
/
createCashgram
Copy
curl --request POST \
--url https://payout-api.cashfree.com/payout/v1/createCashgram \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '{
"cashgramId": "<string>",
"amount": 123,
"name": "<string>",
"email": "<string>",
"phone": "<string>",
"linkExpiry": "<string>",
"remarks": "<string>",
"notifyCustomer": true
}'
Copy
"{\n \"status\": \"SUCCESS\",\n \"subCode\": \"200\",\n \"message\": \"Cashgram Created\",\n \"data\": \n {\n \"referenceId\": 123456,\n \"cashgramLink\": \"http://csgr.am/abcdefg\"\n }\n}"
Copy
curl --request POST \
--url https://payout-api.cashfree.com/payout/v1/createCashgram \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '{
"cashgramId": "<string>",
"amount": 123,
"name": "<string>",
"email": "<string>",
"phone": "<string>",
"linkExpiry": "<string>",
"remarks": "<string>",
"notifyCustomer": true
}'
Copy
"{\n \"status\": \"SUCCESS\",\n \"subCode\": \"200\",\n \"message\": \"Cashgram Created\",\n \"data\": \n {\n \"referenceId\": 123456,\n \"cashgramLink\": \"http://csgr.am/abcdefg\"\n }\n}"
Assistant
Responses are generated using AI and may contain mistakes.