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.update("status", value: "pending_approval")
queryParams.update("approvals[approver-id]", value: ":user-id")
// Adds the "Authorization: Bearer <access_token>" header.
http.authToken = "<access_token>"
var resp: CkoHttpResponse? = http.quickRequestParams("GET", url: "https://domain.com/api/supplier_information/all/easy_form_responses", json: queryParams)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
Curl Command
curl -G -d "status=pending_approval"
-d "approvals[approver-id]=%3Auser-id"
-H "Authorization: Bearer <access_token>"
https://domain.com/api/supplier_information/all/easy_form_responses
Postman Collection Item JSON
{
"name": "Get SIM Form Response pending with Remote Approver",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{URL}}/api/supplier_information/all/easy_form_responses?status=pending_approval&approvals[approver-id]=:user-id",
"host": [
"{{URL}}"
],
"path": [
"api",
"supplier_information",
"all",
"easy_form_responses"
],
"query": [
{
"key": "status",
"value": "pending_approval"
},
{
"key": "approvals[approver-id]",
"value": ":user-id"
}
]
}
},
"response": [
]
}