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
http.setRequestHeader("Content-Type", value: "application/json")
// Adds the "Authorization: Bearer ACCESS_TOKEN_GOES_HERE" header.
http.authToken = "ACCESS_TOKEN_GOES_HERE"
http.setRequestHeader("Accept", value: "application/com.reloadly.topups-v1+json")
var resp: CkoHttpResponse? = http.quickRequest("POST", url: "https://topups.reloadly.com/topups-async")
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
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"
https://topups.reloadly.com/topups-async
Postman Collection Item JSON
{
"name": "Async Topup",
"event": [
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"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": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://topups.reloadly.com/topups-async",
"protocol": "https",
"host": [
"topups",
"reloadly",
"com"
],
"path": [
"topups-async"
]
}
},
"response": [
]
}