Chilkat Online Tools

VBScript / Coupa Postman Collection - OAuth - Master / Query Approval records

Back to Collection Items

Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set outFile = fso.CreateTextFile("output.txt", True)

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

set http = CreateObject("Chilkat_9_5_0.Http")

set queryParams = CreateObject("Chilkat_9_5_0.JsonObject")
success = queryParams.UpdateString("approvable-type","EasyFormResponse")
success = queryParams.UpdateString("status[in]","pending_approval,approved")
success = queryParams.UpdateString("approver-type","RemoteApprover")
success = queryParams.UpdateInt("approver-id",1)
success = queryParams.UpdateString("fields","[""approvable_type"",""approvable_id""]")

' Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"

' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.QuickRequestParams("GET","https://domain.com/approvals",queryParams)
If (http.LastMethodSuccess = 0) Then
    outFile.WriteLine(http.LastErrorText)
    WScript.Quit
End If

outFile.WriteLine(resp.StatusCode)
outFile.WriteLine(resp.BodyStr)


outFile.Close

Curl Command

curl -G -d "approvable-type=EasyFormResponse"
	-d "status[in]=pending_approval,approved"
	-d "approver-type=RemoteApprover"
	-d "approver-id=1"
	-d "fields=%5B%22approvable_type%22,%22approvable_id%22%5D"
	-H "Authorization: Bearer <access_token>"
https://domain.com/approvals

Postman Collection Item JSON

{
  "name": "Query Approval records",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/approvals?approvable-type=EasyFormResponse&status[in]=pending_approval,approved&approver-type=RemoteApprover&approver-id=1&fields=[\"approvable_type\",\"approvable_id\"]",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "approvals"
      ],
      "query": [
        {
          "key": "approvable-type",
          "value": "EasyFormResponse"
        },
        {
          "key": "status[in]",
          "value": "pending_approval,approved"
        },
        {
          "key": "approver-type",
          "value": "RemoteApprover"
        },
        {
          "key": "approver-id",
          "value": "1"
        },
        {
          "key": "fields",
          "value": "[\"approvable_type\",\"approvable_id\"]"
        }
      ]
    }
  },
  "response": [
  ]
}