Chilkat Online Tools

phpAx / Coupa Postman Collection - OAuth - Master / Bypass all approvals of an Invoice

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");

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

// resp is a Chilkat_9_5_0.HttpResponse
$resp = $http->QuickRequest('PUT','https://domain.com/invoices/:id/bypass_approvals?return_object=limited');
if ($http->LastMethodSuccess == 0) {
    print $http->LastErrorText . "\n";
    exit;
}

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


?>

Curl Command

curl -X PUT
	-H "Authorization: Bearer <access_token>"
https://domain.com/invoices/:id/bypass_approvals?return_object=limited

Postman Collection Item JSON

{
  "name": "Bypass all approvals of an Invoice",
  "protocolProfileBehavior": {
    "disabledSystemHeaders": {}
  },
  "request": {
    "method": "PUT",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "\r\n"
    },
    "url": {
      "raw": "{{URL}}/invoices/:id/bypass_approvals?return_object=limited",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "invoices",
        ":id",
        "bypass_approvals"
      ],
      "query": [
        {
          "key": "return_object",
          "value": "limited"
        }
      ],
      "variable": [
        {
          "key": "id",
          "value": "1308"
        }
      ]
    },
    "description": "Marks all approvers as approved"
  },
  "response": [
  ]
}