Back to Collection Items
IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"
Procedure ChilkatExample()
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
http.i = CkHttp::ckCreate()
If http.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success.i
queryParams.i = CkJsonObject::ckCreate()
If queryParams.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
CkJsonObject::ckUpdateString(queryParams,"current_approval_group[name]","Tes Approver UserGroup Name")
CkJsonObject::ckUpdateString(queryParams,"filter","default_invoices_filter")
; Adds the "Authorization: Bearer <access_token>" header.
CkHttp::setCkAuthToken(http, "<access_token>")
resp.i = CkHttp::ckQuickRequestParams(http,"GET","https://domain.com/invoices",queryParams)
If CkHttp::ckLastMethodSuccess(http) = 0
Debug CkHttp::ckLastErrorText(http)
CkHttp::ckDispose(http)
CkJsonObject::ckDispose(queryParams)
ProcedureReturn
EndIf
Debug Str(CkHttpResponse::ckStatusCode(resp))
Debug CkHttpResponse::ckBodyStr(resp)
CkHttpResponse::ckDispose(resp)
CkHttp::ckDispose(http)
CkJsonObject::ckDispose(queryParams)
ProcedureReturn
EndProcedure
Curl Command
curl -G -d "current_approval_group[name]=Tes%20Approver%20UserGroup%20Name"
-d "filter=default_invoices_filter"
-H "Authorization: Bearer <access_token>"
https://domain.com/invoices
Postman Collection Item JSON
{
"name": "Retrieve all invoices - Current Approver is UserGroup",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{URL}}/invoices?current_approval_group[name]=Tes Approver UserGroup Name&filter=default_invoices_filter",
"host": [
"{{URL}}"
],
"path": [
"invoices"
],
"query": [
{
"key": "current_approval_group[name]",
"value": "Tes Approver UserGroup Name"
},
{
"key": "filter",
"value": "default_invoices_filter"
}
]
}
},
"response": [
]
}