Chilkat Online Tools

unicodeC / Reloadly API / Fx-Rates

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();

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

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

    // {
    //   "operatorId": "1",
    //   "amount": "1"
    // }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"operatorId",L"1");
    CkJsonObjectW_UpdateString(json,L"amount",L"1");

    CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
    // Adds the "Authorization: Bearer ACCESS_TOKEN_GOES_HERE" header.
    CkHttpW_putAuthToken(http,L"ACCESS_TOKEN_GOES_HERE");
    CkHttpW_SetRequestHeader(http,L"Accept",L"application/com.reloadly.topups-v1+json");

    resp = CkHttpW_PostJson3(http,L"https://topups.reloadly.com/operators/fx-rate",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
	-H "Authorization: Bearer ACCESS_TOKEN_GOES_HERE"
	-H "Accept: application/com.reloadly.topups-v1+json"
	-H "Content-Type: application/json"
	-d '{
	"operatorId":"1",
	"amount":"1"
}'
https://topups.reloadly.com/operators/fx-rate

Postman Collection Item JSON

{
  "name": "Fx-Rates",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer ACCESS_TOKEN_GOES_HERE",
        "type": "text"
      },
      {
        "key": "Accept",
        "value": "application/com.reloadly.topups-v1+json",
        "type": "text"
      },
      {
        "key": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n\t\"operatorId\":\"1\",\n\t\"amount\":\"1\"\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "https://topups.reloadly.com/operators/fx-rate",
      "protocol": "https",
      "host": [
        "topups",
        "reloadly",
        "com"
      ],
      "path": [
        "operators",
        "fx-rate"
      ]
    }
  },
  "response": [
  ]
}