Chilkat Online Tools

phpAx / Coupa Postman Collection - OAuth - Master / Retrieve Requisitions Pending with Current (Remote) Approver

Back to Collection Items

<?php

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

$http = new COM("Chilkat_9_5_0.Http");

$queryParams = new COM("Chilkat_9_5_0.JsonObject");
$queryParams->UpdateString('current_approver_association[login]','CoupaSam');

// Adds the "Authorization: Bearer <access_token>" header.
$http->AuthToken = '<access_token>';

// resp is a Chilkat_9_5_0.HttpResponse
$resp = $http->QuickRequestParams('GET','https://domain.com/requisitions',$queryParams);
if ($http->LastMethodSuccess == 0) {
    print $http->LastErrorText . "\n";
    exit;
}

print $resp->StatusCode . "\n";
print $resp->BodyStr . "\n";


?>

Curl Command

curl -G -d "current_approver_association[login]=CoupaSam"
	-H "Authorization: Bearer <access_token>"
https://domain.com/requisitions

Postman Collection Item JSON

{
  "name": "Retrieve Requisitions Pending with Current (Remote) Approver",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/requisitions?current_approver_association[login]=CoupaSam",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "requisitions"
      ],
      "query": [
        {
          "key": "current_approver_association[login]",
          "value": "CoupaSam"
        }
      ]
    }
  },
  "response": [
  ]
}