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
let queryParams = CkoJsonObject()
queryParams.UpdateString("exported", value: "false")
queryParams.UpdateString("status", value: "ordered")
// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"
var resp: CkoHttpResponse? = http.QuickRequestParams("GET", url: "https://domain.com/requisitions", json: queryParams)
if http.LastMethodSuccess == false {
print("\(http.LastErrorText)")
return
}
print("\(resp!.StatusCode.intValue)")
print("\(resp!.BodyStr)")
resp = nil
}
Curl Command
curl -G -d "exported=false"
-d "status=ordered"
-H "Authorization: Bearer <access_token>"
https://domain.com/requisitions
Postman Collection Item JSON
{
"name": "Export Requisitions - Based on Export Flag and Status",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{URL}}/requisitions?exported=false&status=ordered",
"host": [
"{{URL}}"
],
"path": [
"requisitions"
],
"query": [
{
"key": "exported",
"value": "false"
},
{
"key": "status",
"value": "ordered"
}
]
}
},
"response": [
]
}