Back to Collection Items
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
$oHttp = ObjCreate("Chilkat.Http")
Local $bSuccess
; Adds the "Authorization: Bearer ACCESS_TOKEN_GOES_HERE" header.
$oHttp.AuthToken = "ACCESS_TOKEN_GOES_HERE"
$oHttp.SetRequestHeader "Accept","application/com.reloadly.topups-v1+json"
$oSbResponseBody = ObjCreate("Chilkat.StringBuilder")
$bSuccess = $oHttp.QuickGetSb("https://topups.reloadly.com/topups/12345/status",$oSbResponseBody)
If ($bSuccess = False) Then
ConsoleWrite($oHttp.LastErrorText & @CRLF)
Exit
EndIf
ConsoleWrite("Response status code = " & $oHttp.LastStatus & @CRLF)
ConsoleWrite($oSbResponseBody.GetAsString() & @CRLF)
Curl Command
curl -X GET
-H "Authorization: Bearer ACCESS_TOKEN_GOES_HERE"
-H "Accept: application/com.reloadly.topups-v1+json"
https://topups.reloadly.com/topups/12345/status
Postman Collection Item JSON
{
"name": "Status",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer ACCESS_TOKEN_GOES_HERE",
"type": "text"
},
{
"key": "Accept",
"value": "application/com.reloadly.topups-v1+json",
"type": "text"
}
],
"url": {
"raw": "https://topups.reloadly.com/topups/12345/status",
"protocol": "https",
"host": [
"topups",
"reloadly",
"com"
],
"path": [
"topups",
"12345",
"status"
]
}
},
"response": [
]
}