DataFlex / Razorpay APIs / Composite API - VPA
Back to Collection Items
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
Variant vJson
Handle hoJson
Variant vResp
Handle hoResp
String sTemp1
Integer iTemp1
Boolean bTemp1
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
Set ComBasicAuth Of hoHttp To True
Set ComLogin Of hoHttp To "username"
Set ComPassword Of hoHttp To "password"
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "account_number": "account_number",
// "amount": 10000,
// "currency": "INR",
// "mode": "UPI",
// "purpose": "refund",
// "fund_account": {
// "account_type": "vpa",
// "vpa": {
// "address": "gauravkumar@exampleupi"
// },
// "contact": {
// "name": "Gaurav Kumar",
// "email": "gaurav.kumar@example.com",
// "contact": "9876543210",
// "type": "employee",
// "reference_id": "Acme Contact ID 12345",
// "notes": {
// "notes_key_1": "Tea, Earl Grey, Hot",
// "notes_key_2": "Tea, Earl Grey… decaf."
// }
// }
// },
// "queue_if_low_balance": true,
// "reference_id": "Acme Transaction ID 12345",
// "narration": "Acme Corp Fund Transfer",
// "notes": {
// "notes_key_1": "Beam me up Scotty",
// "notes_key_2": "Engage"
// }
// }
Get Create (RefClass(cComChilkatJsonObject)) To hoJson
If (Not(IsComObjectCreated(hoJson))) Begin
Send CreateComObject of hoJson
End
Get ComUpdateString Of hoJson "account_number" "account_number" To iSuccess
Get ComUpdateInt Of hoJson "amount" 10000 To iSuccess
Get ComUpdateString Of hoJson "currency" "INR" To iSuccess
Get ComUpdateString Of hoJson "mode" "UPI" To iSuccess
Get ComUpdateString Of hoJson "purpose" "refund" To iSuccess
Get ComUpdateString Of hoJson "fund_account.account_type" "vpa" To iSuccess
Get ComUpdateString Of hoJson "fund_account.vpa.address" "gauravkumar@exampleupi" To iSuccess
Get ComUpdateString Of hoJson "fund_account.contact.name" "Gaurav Kumar" To iSuccess
Get ComUpdateString Of hoJson "fund_account.contact.email" "gaurav.kumar@example.com" To iSuccess
Get ComUpdateString Of hoJson "fund_account.contact.contact" "9876543210" To iSuccess
Get ComUpdateString Of hoJson "fund_account.contact.type" "employee" To iSuccess
Get ComUpdateString Of hoJson "fund_account.contact.reference_id" "Acme Contact ID 12345" To iSuccess
Get ComUpdateString Of hoJson "fund_account.contact.notes.notes_key_1" "Tea, Earl Grey, Hot" To iSuccess
Get ComUpdateString Of hoJson "fund_account.contact.notes.notes_key_2" "Tea, Earl Grey… decaf." To iSuccess
Get ComUpdateBool Of hoJson "queue_if_low_balance" True To iSuccess
Get ComUpdateString Of hoJson "reference_id" "Acme Transaction ID 12345" To iSuccess
Get ComUpdateString Of hoJson "narration" "Acme Corp Fund Transfer" To iSuccess
Get ComUpdateString Of hoJson "notes.notes_key_1" "Beam me up Scotty" To iSuccess
Get ComUpdateString Of hoJson "notes.notes_key_2" "Engage" To iSuccess
Send ComSetRequestHeader To hoHttp "X-Payout-Idempotency" ""
Get pvComObject of hoJson to vJson
Get ComPostJson3 Of hoHttp "https://api.razorpay.com/v1/payouts" "application/json" vJson To vResp
If (IsComObject(vResp)) Begin
Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
Set pvComObject Of hoResp To vResp
End
Get ComLastMethodSuccess Of hoHttp To bTemp1
If (bTemp1 = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComStatusCode Of hoResp To iTemp1
Showln iTemp1
Get ComBodyStr Of hoResp To sTemp1
Showln sTemp1
Send Destroy of hoResp
End_Procedure
Curl Command
curl -X POST
-u 'username:password'
-H "X-Payout-Idempotency: "
-d '{
"account_number":"account_number",
"amount":10000,
"currency":"INR",
"mode":"UPI",
"purpose":"refund",
"fund_account":{
"account_type":"vpa",
"vpa":{
"address":"gauravkumar@exampleupi"
},
"contact":{
"name":"Gaurav Kumar",
"email":"gaurav.kumar@example.com",
"contact":"9876543210",
"type":"employee",
"reference_id":"Acme Contact ID 12345",
"notes":{
"notes_key_1":"Tea, Earl Grey, Hot",
"notes_key_2":"Tea, Earl Grey… decaf."
}
}
},
"queue_if_low_balance":true,
"reference_id":"Acme Transaction ID 12345",
"narration":"Acme Corp Fund Transfer",
"notes":{
"notes_key_1":"Beam me up Scotty",
"notes_key_2":"Engage"
}
}'
https://api.razorpay.com/v1/payouts
Postman Collection Item JSON
{
"name": "Composite API - VPA",
"request": {
"method": "POST",
"header": [
{
"key": "X-Payout-Idempotency",
"value": "",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"account_number\":\"account_number\",\n \"amount\":10000,\n \"currency\":\"INR\",\n \"mode\":\"UPI\",\n \"purpose\":\"refund\",\n \"fund_account\":{\n \"account_type\":\"vpa\",\n \"vpa\":{\n \"address\":\"gauravkumar@exampleupi\"\n },\n \"contact\":{\n \"name\":\"Gaurav Kumar\",\n \"email\":\"gaurav.kumar@example.com\",\n \"contact\":\"9876543210\",\n \"type\":\"employee\",\n \"reference_id\":\"Acme Contact ID 12345\",\n \"notes\":{\n \"notes_key_1\":\"Tea, Earl Grey, Hot\",\n \"notes_key_2\":\"Tea, Earl Grey… decaf.\"\n }\n }\n },\n \"queue_if_low_balance\":true,\n \"reference_id\":\"Acme Transaction ID 12345\",\n \"narration\":\"Acme Corp Fund Transfer\",\n \"notes\":{\n \"notes_key_1\":\"Beam me up Scotty\",\n \"notes_key_2\":\"Engage\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://api.razorpay.com/v1/payouts",
"protocol": "https",
"host": [
"api",
"razorpay",
"com"
],
"path": [
"v1",
"payouts"
]
},
"description": "Use this [API](https://razorpay.com/docs/api/razorpayx/composite-api/#vpa-upi-id) to create a payout using contact and VPA."
},
"response": [
]
}