Chilkat Online Tools

phpAx / Coupa Postman Collection - OAuth - Master / Retrieve Invoices against a COA

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('account_type[name]','Ace Corporate');
$queryParams->UpdateString('filter','default_invoices_filter');

// 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/invoices',$queryParams);
if ($http->LastMethodSuccess == 0) {
    print $http->LastErrorText . "\n";
    exit;
}

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


?>

Curl Command

curl -G -d "account_type[name]=Ace%20Corporate"
	-d "filter=default_invoices_filter"
	-H "Authorization: Bearer <access_token>"
https://domain.com/invoices

Postman Collection Item JSON

{
  "name": "Retrieve Invoices against a COA",
  "protocolProfileBehavior": {
    "disabledSystemHeaders": {}
  },
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/invoices?account_type[name]=Ace Corporate&filter=default_invoices_filter",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "invoices"
      ],
      "query": [
        {
          "key": "account_type[name]",
          "value": "Ace Corporate"
        },
        {
          "key": "filter",
          "value": "default_invoices_filter"
        }
      ]
    }
  },
  "response": [
  ]
}