Chilkat Online Tools

Ruby / Coupa Postman Collection - OAuth - Master / Get SIM Form Response pending with Remote Approver

Back to Collection Items

require 'chilkat'

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

http = Chilkat::CkHttp.new()

queryParams = Chilkat::CkJsonObject.new()
queryParams.UpdateString("status","pending_approval")
queryParams.UpdateString("approvals[approver-id]",":user-id")

# Adds the "Authorization: Bearer <access_token>" header.
http.put_AuthToken("<access_token>")

# resp is a CkHttpResponse
resp = http.QuickRequestParams("GET","https://domain.com/api/supplier_information/all/easy_form_responses",queryParams)
if (http.get_LastMethodSuccess() == false)
    print http.lastErrorText() + "\n";
    exit
end

print resp.get_StatusCode().to_s() + "\n";
print resp.bodyStr() + "\n";

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": [
  ]
}