Chilkat Online Tools

Unicode C++ / Coupa Postman Collection - OAuth - Master / Retrieve goods receipts - not exported

Back to Collection Items

void ChilkatSample(void)
    {
    queryParams.UpdateString(L"exported",L"false");    http.put_AuthToken(L"<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": [
  ]
}