Chilkat Online Tools

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

Back to Collection Items

use 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 HttpResponse
$resp = $http->QuickRequestParams("GET","https://domain.com/api/supplier_information/all/easy_form_responses",$queryParams);
if ($http->get_LastMethodSuccess() == 0) {
    print $http->lastErrorText() . "\r\n";
    exit;
}

print $resp->get_StatusCode() . "\r\n";
print $resp->bodyStr() . "\r\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": [
  ]
}