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("payment-partner[name]","Citibank");
// Adds the "Authorization: Bearer <access_token>" header.
http.put_AuthToken("<access_token>");
CkHttpResponse *resp = http.QuickRequestParams("GET","https://domain.com/coupa_pay/statements",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 "payment-partner[name]=Citibank"
-H "Authorization: Bearer <access_token>"
https://domain.com/coupa_pay/statements
Postman Collection Item JSON
{
"name": "Get All statements based on Specific Payment Partner",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{URL}}/coupa_pay/statements?payment-partner[name]=Citibank",
"host": [
"{{URL}}"
],
"path": [
"coupa_pay",
"statements"
],
"query": [
{
"key": "payment-partner[name]",
"value": "Citibank"
}
]
}
},
"response": [
]
}