Chilkat Online Tools

unicodeCpp / Reloadly API / Order

Back to Collection Items

#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkHttpResponseW.h>

void ChilkatSample(void)
    {
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttpW http;
    bool success;

    // Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "productId": 120,
    //   "countryCode": "US",
    //   "quantity": 1,
    //   "unitPrice": 1,
    //   "customIdentifier": "obucks10",
    //   "senderName": "John Doe",
    //   "recipientEmail": "anyone@email.com",
    //   "recipientPhoneDetails": {
    //     "countryCode": "ES",
    //     "phoneNumber": "657829900"
    //   }
    // }

    CkJsonObjectW json;
    json.UpdateInt(L"productId",120);
    json.UpdateString(L"countryCode",L"US");
    json.UpdateInt(L"quantity",1);
    json.UpdateInt(L"unitPrice",1);
    json.UpdateString(L"customIdentifier",L"obucks10");
    json.UpdateString(L"senderName",L"John Doe");
    json.UpdateString(L"recipientEmail",L"anyone@email.com");
    json.UpdateString(L"recipientPhoneDetails.countryCode",L"ES");
    json.UpdateString(L"recipientPhoneDetails.phoneNumber",L"657829900");

    http.SetRequestHeader(L"Content-Type",L"application/json");
    // Adds the "Authorization: Bearer YOUR_ACCESS_TOKEN_HERE" header.
    http.put_AuthToken(L"YOUR_ACCESS_TOKEN_HERE");
    http.SetRequestHeader(L"Accept",L"application/com.reloadly.giftcards-v1+json");

    CkHttpResponseW *resp = http.PostJson3(L"https://giftcards.reloadly.com/orders",L"application/json",json);
    if (http.get_LastMethodSuccess() == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    wprintf(L"%d\n",resp->get_StatusCode());
    wprintf(L"%s\n",resp->bodyStr());
    delete resp;
    }

Curl Command

curl -X POST
	-H "Authorization: Bearer YOUR_ACCESS_TOKEN_HERE"
	-H "Accept: application/com.reloadly.giftcards-v1+json"
	-H "Content-Type: application/json"
	-d '{
    "productId": 120,
    "countryCode": "US",
    "quantity": 1,
    "unitPrice": 1,
    "customIdentifier": "obucks10",
    "senderName": "John Doe",
    "recipientEmail": "anyone@email.com",
     "recipientPhoneDetails": {
        "countryCode": "ES",
        "phoneNumber": "657829900"
    }
}'
https://giftcards.reloadly.com/orders

Postman Collection Item JSON

{
  "name": "Order",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer YOUR_ACCESS_TOKEN_HERE",
        "type": "text"
      },
      {
        "key": "Accept",
        "value": "application/com.reloadly.giftcards-v1+json",
        "type": "text"
      },
      {
        "key": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"productId\": 120,\r\n    \"countryCode\": \"US\",\r\n    \"quantity\": 1,\r\n    \"unitPrice\": 1,\r\n    \"customIdentifier\": \"obucks10\",\r\n    \"senderName\": \"John Doe\",\r\n    \"recipientEmail\": \"anyone@email.com\",\r\n     \"recipientPhoneDetails\": {\r\n        \"countryCode\": \"ES\",\r\n        \"phoneNumber\": \"657829900\"\r\n    }\r\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "https://giftcards.reloadly.com/orders",
      "protocol": "https",
      "host": [
        "giftcards",
        "reloadly",
        "com"
      ],
      "path": [
        "orders"
      ]
    }
  },
  "response": [
  ]
}