Back to Collection Items
#include <CkHttp.h>
#include <CkJsonObject.h>
#include <CkHttpResponse.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http;
bool success;
CkJsonObject queryParams;
queryParams.UpdateString("status","pending_approval");
queryParams.UpdateString("approvals[approver-id]",":user-id");
// Adds the "Authorization: Bearer <access_token>" header.
http.put_AuthToken("<access_token>");
CkHttpResponse *resp = http.QuickRequestParams("GET","https://domain.com/api/supplier_information/all/easy_form_responses",queryParams);
if (http.get_LastMethodSuccess() == false) {
std::cout << http.lastErrorText() << "\r\n";
return;
}
std::cout << resp->get_StatusCode() << "\r\n";
std::cout << resp->bodyStr() << "\r\n";
delete resp;
}
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": [
]
}