Chilkat Online Tools

unicodeC / Reloadly API / Number Lookup - POST

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.

    // {
    //   "number": "03238482221",
    //   "countryCode": "PK"
    // }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"number",L"03238482221");
    CkJsonObjectW_UpdateString(json,L"countryCode",L"PK");

    // 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/mnp-lookup/operators?suggestedAmounts=false&suggestedAmountsMap=false",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"
	-d '{
    "number": "03238482221",
    "countryCode": "PK"
}'
https://topups.reloadly.com/mnp-lookup/operators?suggestedAmounts=false&suggestedAmountsMap=false

Postman Collection Item JSON

{
  "name": "Number Lookup - POST",
  "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"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"number\": \"03238482221\",\r\n    \"countryCode\": \"PK\"\r\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "https://topups.reloadly.com/mnp-lookup/operators?suggestedAmounts=false&suggestedAmountsMap=false",
      "protocol": "https",
      "host": [
        "topups",
        "reloadly",
        "com"
      ],
      "path": [
        "mnp-lookup",
        "operators"
      ],
      "query": [
        {
          "key": "suggestedAmounts",
          "value": "false"
        },
        {
          "key": "suggestedAmountsMap",
          "value": "false"
        }
      ]
    }
  },
  "response": [
  ]
}