Chilkat Online Tools

PowerBuilder / Coupa Postman Collection - OAuth - Master / Get Expense Reports - Status Approved For Payment and Not Exported and Payment Channel CoupaPay

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_QueryParams
oleobject loo_Resp

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_QueryParams = create oleobject
li_rc = loo_QueryParams.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_QueryParams.UpdateString("status","approved_for_payment")
loo_QueryParams.UpdateString("exported","false")
loo_QueryParams.UpdateString("payment-channel","CoupaPay")
loo_QueryParams.UpdateString("filter","default_expense_reports_filter")

// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"

loo_Resp = loo_Http.QuickRequestParams("GET","https://domain.com/expense_reports",loo_QueryParams)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_QueryParams
    return
end if

Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp


destroy loo_Http
destroy loo_QueryParams

Curl Command

curl -G -d "status=approved_for_payment"
	-d "exported=false"
	-d "payment-channel=CoupaPay"
	-d "filter=default_expense_reports_filter"
	-H "Authorization: Bearer <access_token>"
https://domain.com/expense_reports

Postman Collection Item JSON

{
  "name": "Get Expense Reports - Status Approved For Payment and Not Exported and Payment Channel CoupaPay",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/expense_reports?status=approved_for_payment&exported=false&payment-channel=CoupaPay&filter=default_expense_reports_filter",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "expense_reports"
      ],
      "query": [
        {
          "key": "status",
          "value": "approved_for_payment"
        },
        {
          "key": "exported",
          "value": "false"
        },
        {
          "key": "payment-channel",
          "value": "CoupaPay"
        },
        {
          "key": "filter",
          "value": "default_expense_reports_filter"
        }
      ]
    }
  },
  "response": [
  ]
}