Chilkat Online Tools

TCL / Reloadly API / Products

Back to Collection Items

load ./chilkat.dll

# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

set http [new_CkHttp]

set queryParams [new_CkJsonObject]

CkJsonObject_UpdateString $queryParams "includeRange" "true"
CkJsonObject_UpdateString $queryParams "includeFixed" "true"

# Adds the "Authorization: Bearer ACCESS_TOKEN_GOES_HERE" header.
CkHttp_put_AuthToken $http "ACCESS_TOKEN_GOES_HERE"
CkHttp_SetRequestHeader $http "Accept" "application/com.reloadly.giftcards-v1+json"

# resp is a CkHttpResponse
set resp [CkHttp_QuickRequestParams $http "GET" "https://giftcards.reloadly.com/products" $queryParams]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkJsonObject $queryParams
    exit
}

puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp


delete_CkHttp $http
delete_CkJsonObject $queryParams

Curl Command

curl -G -d "includeRange=true"
	-d "includeFixed=true"
	-H "Authorization: Bearer ACCESS_TOKEN_GOES_HERE"
	-H "Accept: application/com.reloadly.giftcards-v1+json"
https://giftcards.reloadly.com/products

Postman Collection Item JSON

{
  "name": "Products",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer ACCESS_TOKEN_GOES_HERE",
        "type": "text"
      },
      {
        "key": "Accept",
        "value": "application/com.reloadly.giftcards-v1+json",
        "type": "text"
      }
    ],
    "url": {
      "raw": "https://giftcards.reloadly.com/products?includeRange=true&includeFixed=true",
      "protocol": "https",
      "host": [
        "giftcards",
        "reloadly",
        "com"
      ],
      "path": [
        "products"
      ],
      "query": [
        {
          "key": "includeRange",
          "value": "true"
        },
        {
          "key": "includeFixed",
          "value": "true"
        }
      ]
    }
  },
  "response": [
  ]
}