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("fields", value: "[\"id\"]")
// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"
var resp: CkoHttpResponse? = http.QuickRequestParams("GET", url: "https://domain.com/budget_lines", json: queryParams)
if http.LastMethodSuccess == false {
print("\(http.LastErrorText)")
return
}
print("\(resp!.StatusCode.intValue)")
print("\(resp!.BodyStr)")
resp = nil
}
Curl Command
curl -G -d "fields=%5B%22id%22%5D"
-H "Authorization: Bearer <access_token>"
https://domain.com/budget_lines
Postman Collection Item JSON
{
"name": "Get budget lines",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{URL}}/budget_lines?fields=[\"id\"]",
"host": [
"{{URL}}"
],
"path": [
"budget_lines"
],
"query": [
{
"key": "fields",
"value": "[\"id\"]"
}
]
}
},
"response": [
]
}