Chilkat Online Tools

unicodeC / Razorpay APIs / Create Payout Link (using customer details)

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.

    // {
    //   "account_number": "account_number",
    //   "contact": {
    //     "name": "Gaurav Kumar",
    //     "type": "customer",
    //     "contact": "912345678",
    //     "email": "gaurav.kumar@example.com"
    //   },
    //   "amount": 1000,
    //   "currency": "INR",
    //   "purpose": "refund",
    //   "description": "Payout link for Gaurav Kumar",
    //   "receipt": "Receipt No. 1",
    //   "notes": {
    //     "random_key_1": "Make it so.",
    //     "random_key_2": "Tea. Earl Grey. Hot."
    //   }
    // }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"account_number",L"account_number");
    CkJsonObjectW_UpdateString(json,L"contact.name",L"Gaurav Kumar");
    CkJsonObjectW_UpdateString(json,L"contact.type",L"customer");
    CkJsonObjectW_UpdateString(json,L"contact.contact",L"912345678");
    CkJsonObjectW_UpdateString(json,L"contact.email",L"gaurav.kumar@example.com");
    CkJsonObjectW_UpdateInt(json,L"amount",1000);
    CkJsonObjectW_UpdateString(json,L"currency",L"INR");
    CkJsonObjectW_UpdateString(json,L"purpose",L"refund");
    CkJsonObjectW_UpdateString(json,L"description",L"Payout link for Gaurav Kumar");
    CkJsonObjectW_UpdateString(json,L"receipt",L"Receipt No. 1");
    CkJsonObjectW_UpdateString(json,L"notes.random_key_1",L"Make it so.");
    CkJsonObjectW_UpdateString(json,L"notes.random_key_2",L"Tea. Earl Grey. Hot.");

    CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");

    resp = CkHttpW_PostJson3(http,L"https://api.razorpay.com/v1/payout-links",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'
	-H "Content-Type: application/json"
	-d '{
  "account_number": "account_number",
  "contact": {
    "name": "Gaurav Kumar",
    "type": "customer",
    "contact": "912345678",
    "email": "gaurav.kumar@example.com"
  },
  "amount": 1000,
  "currency": "INR",
  "purpose": "refund",
  "description": "Payout link for Gaurav Kumar",
  "receipt": "Receipt No. 1",
  "notes": {
    "random_key_1": "Make it so.",
    "random_key_2": "Tea. Earl Grey. Hot."
  }
}'
https://api.razorpay.com/v1/payout-links

Postman Collection Item JSON

{
  "name": "Create Payout Link (using customer details)",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"account_number\": \"account_number\",\n  \"contact\": {\n    \"name\": \"Gaurav Kumar\",\n    \"type\": \"customer\",\n    \"contact\": \"912345678\",\n    \"email\": \"gaurav.kumar@example.com\"\n  },\n  \"amount\": 1000,\n  \"currency\": \"INR\",\n  \"purpose\": \"refund\",\n  \"description\": \"Payout link for Gaurav Kumar\",\n  \"receipt\": \"Receipt No. 1\",\n  \"notes\": {\n    \"random_key_1\": \"Make it so.\",\n    \"random_key_2\": \"Tea. Earl Grey. Hot.\"\n  }\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "https://api.razorpay.com/v1/payout-links",
      "protocol": "https",
      "host": [
        "api",
        "razorpay",
        "com"
      ],
      "path": [
        "v1",
        "payout-links"
      ]
    },
    "description": "Use this [API](https://razorpay.com/docs/api/razorpayx/payout-links/#create-a-payout-link) to create a Payout Link."
  },
  "response": [
  ]
}