Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// Adds the "Authorization: Bearer ACCESS_TOKEN_GOES_HERE" header.
http.authToken = "ACCESS_TOKEN_GOES_HERE"
http.setRequestHeader("Accept", value: "application/com.reloadly.giftcards-v1+json")
let sbResponseBody = CkoStringBuilder()!
success = http.quickGetSb("https://giftcards.reloadly.com/orders/transactions/2/cards", sbContent: sbResponseBody)
if success == false {
print("\(http.lastErrorText!)")
return
}
print("Response status code = \(http.lastStatus.intValue)")
print("\(sbResponseBody.getAsString()!)")
}
Curl Command
curl -X GET
-H "Authorization: Bearer ACCESS_TOKEN_GOES_HERE"
-H "Accept: application/com.reloadly.giftcards-v1+json"
https://giftcards.reloadly.com/orders/transactions/2/cards
Postman Collection Item JSON
{
"name": "Redeem Codes",
"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/orders/transactions/2/cards",
"protocol": "https",
"host": [
"giftcards",
"reloadly",
"com"
],
"path": [
"orders",
"transactions",
"2",
"cards"
]
}
},
"response": [
]
}