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.updateInt("order-line[order-header][po_number]", value: 3391)
queryParams.updateInt("order-line[line-num]", value: 1)
// Adds the "Authorization: Bearer <access_token>" header.
http.authToken = "<access_token>"
var resp: CkoHttpResponse? = http.quickRequestParams("GET", url: "https://domain.com/receiving_transactions", json: queryParams)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
Curl Command
curl -G -d "order-line[order-header][po_number]=3391"
-d "order-line[line-num]=1"
-H "Authorization: Bearer <access_token>"
https://domain.com/receiving_transactions
Postman Collection Item JSON
{
"name": "Retrieve goods receipts by PO Number",
"protocolProfileBehavior": {
"disabledSystemHeaders": {}
},
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{URL}}/receiving_transactions?order-line[order-header][po_number]=3391&order-line[line-num]=1",
"host": [
"{{URL}}"
],
"path": [
"receiving_transactions"
],
"query": [
{
"key": "order-line[order-header][po_number]",
"value": "3391"
},
{
"key": "order-line[line-num]",
"value": "1"
}
]
}
},
"response": [
]
}