unicodeC / Razorpay APIs / Create a Virtual Account
Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW json;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
CkHttpW_putBasicAuth(http,TRUE);
CkHttpW_putLogin(http,L"username");
CkHttpW_putPassword(http,L"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.
// {
// "receivers": {
// "types": [
// "bank_account"
// ]
// },
// "description": "Virtual Account created for Raftar Soft",
// "customer_id": "cust_id",
// "close_by": 1681615838,
// "notes": {
// "project_name": "Banking Software"
// }
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"receivers.types[0]",L"bank_account");
CkJsonObjectW_UpdateString(json,L"description",L"Virtual Account created for Raftar Soft");
CkJsonObjectW_UpdateString(json,L"customer_id",L"cust_id");
CkJsonObjectW_UpdateInt(json,L"close_by",1681615838);
CkJsonObjectW_UpdateString(json,L"notes.project_name",L"Banking Software");
resp = CkHttpW_PostJson3(http,L"https://api.razorpay.com/v1/virtual_accounts",L"application/json",json);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
}
Curl Command
curl -X POST
-u 'username:password'
-d '{
"receivers": {
"types": [
"bank_account"
]
},
"description": "Virtual Account created for Raftar Soft",
"customer_id": "cust_id",//Enter customer_id
"close_by": 1681615838,
"notes": {
"project_name": "Banking Software"
}
}'
https://api.razorpay.com/v1/virtual_accounts
Postman Collection Item JSON
{
"name": "Create a Virtual Account",
"request": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"receivers\": {\n \"types\": [\n \"bank_account\"\n ]\n },\n \"description\": \"Virtual Account created for Raftar Soft\",\n \"customer_id\": \"cust_id\",//Enter customer_id\n \"close_by\": 1681615838,\n \"notes\": {\n \"project_name\": \"Banking Software\"\n }\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://api.razorpay.com/v1/virtual_accounts",
"protocol": "https",
"host": [
"api",
"razorpay",
"com"
],
"path": [
"v1",
"virtual_accounts"
]
},
"description": "Use this <a href=\"https://razorpay.com/docs/api/smart-collect/#create-virtual-account\" target=\"_blank\">API</a> to create a Virtual Account."
},
"response": [
]
}