Chilkat Online Tools

Delphi (DLL) / Coupa Postman Collection - OAuth - Master / Retrieve goods receipts - not exported

Back to Collection Items

var

begin
CkJsonObject_UpdateString(queryParams,'exported','false');CkHttp_putAuthToken(http,'<access_token>');


Curl Command

curl -G -d "exported=false"
	-H "Authorization: Bearer <access_token>"
https://domain.com/receiving_transactions

Postman Collection Item JSON

{
  "name": "Retrieve goods receipts - not exported",
  "protocolProfileBehavior": {
    "disabledSystemHeaders": {}
  },
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/receiving_transactions?exported=false",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "receiving_transactions"
      ],
      "query": [
        {
          "key": "exported",
          "value": "false"
        }
      ]
    }
  },
  "response": [
  ]
}