Chilkat Online Tools

delphiAx / Coupa Postman Collection - OAuth - Master / Retrieve goods receipts by ID

Back to Collection Items

var
http: TChilkatHttp;
success: Integer;
queryParams: TChilkatJsonObject;
resp: IChilkatHttpResponse;

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

http := TChilkatHttp.Create(Self);

queryParams := TChilkatJsonObject.Create(Self);
queryParams.UpdateString('fields','["id","status","price","quantity","total","transaction_date","type","match_reference","original_transaction_id","voided_value","exported",{"account": ["id","name","code","active","segment_1","segment_2", "segment_3", "segment_4", "account_type_id"]},{"account_allocations": ["id","name","code","active","segment_1","segment_2", "segment_3", "segment_4", "account_type_id"]},{"order_line": ["id","order_header_id","order_header_number"]},{"item": ["id","name","item_number"]},{"uom": ["name","code"]},{"created_by": ["id","login","email"]},{"updated_by": ["id","login","email"]}]');

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

resp := http.QuickRequestParams('GET','https://domain.com/receiving_transactions/:id',queryParams.ControlInterface);
if (http.LastMethodSuccess = 0) then
  begin
    Memo1.Lines.Add(http.LastErrorText);
    Exit;
  end;

Memo1.Lines.Add(IntToStr(resp.StatusCode));
Memo1.Lines.Add(resp.BodyStr);

Curl Command

curl -G -d "fields=%5B%22id%22,%22status%22,%22price%22,%22quantity%22,%22total%22,%22transaction_date%22,%22type%22,%22match_reference%22,%22original_transaction_id%22,%22voided_value%22,%22exported%22,%7B%22account%22%3A%20%5B%22id%22,%22name%22,%22code%22,%22active%22,%22segment_1%22,%22segment_2%22,%20%22segment_3%22,%20%22segment_4%22,%20%22account_type_id%22%5D%7D,%7B%22account_allocations%22%3A%20%5B%22id%22,%22name%22,%22code%22,%22active%22,%22segment_1%22,%22segment_2%22,%20%22segment_3%22,%20%22segment_4%22,%20%22account_type_id%22%5D%7D,%7B%22order_line%22%3A%20%5B%22id%22,%22order_header_id%22,%22order_header_number%22%5D%7D,%7B%22item%22%3A%20%5B%22id%22,%22name%22,%22item_number%22%5D%7D,%7B%22uom%22%3A%20%5B%22name%22,%22code%22%5D%7D,%7B%22created_by%22%3A%20%5B%22id%22,%22login%22,%22email%22%5D%7D,%7B%22updated_by%22%3A%20%5B%22id%22,%22login%22,%22email%22%5D%7D%5D"
	-H "Authorization: Bearer <access_token>"
https://domain.com/receiving_transactions/:id

Postman Collection Item JSON

{
  "name": "Retrieve goods receipts by ID",
  "protocolProfileBehavior": {
    "disabledSystemHeaders": {}
  },
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/receiving_transactions/:id?fields=[\"id\",\"status\",\"price\",\"quantity\",\"total\",\"transaction_date\",\"type\",\"match_reference\",\"original_transaction_id\",\"voided_value\",\"exported\",{\"account\": [\"id\",\"name\",\"code\",\"active\",\"segment_1\",\"segment_2\", \"segment_3\", \"segment_4\", \"account_type_id\"]},{\"account_allocations\": [\"id\",\"name\",\"code\",\"active\",\"segment_1\",\"segment_2\", \"segment_3\", \"segment_4\", \"account_type_id\"]},{\"order_line\": [\"id\",\"order_header_id\",\"order_header_number\"]},{\"item\": [\"id\",\"name\",\"item_number\"]},{\"uom\": [\"name\",\"code\"]},{\"created_by\": [\"id\",\"login\",\"email\"]},{\"updated_by\": [\"id\",\"login\",\"email\"]}]",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "receiving_transactions",
        ":id"
      ],
      "query": [
        {
          "key": "fields",
          "value": "[\"id\",\"status\",\"price\",\"quantity\",\"total\",\"transaction_date\",\"type\",\"match_reference\",\"original_transaction_id\",\"voided_value\",\"exported\",{\"account\": [\"id\",\"name\",\"code\",\"active\",\"segment_1\",\"segment_2\", \"segment_3\", \"segment_4\", \"account_type_id\"]},{\"account_allocations\": [\"id\",\"name\",\"code\",\"active\",\"segment_1\",\"segment_2\", \"segment_3\", \"segment_4\", \"account_type_id\"]},{\"order_line\": [\"id\",\"order_header_id\",\"order_header_number\"]},{\"item\": [\"id\",\"name\",\"item_number\"]},{\"uom\": [\"name\",\"code\"]},{\"created_by\": [\"id\",\"login\",\"email\"]},{\"updated_by\": [\"id\",\"login\",\"email\"]}]"
        }
      ],
      "variable": [
        {
          "key": "id",
          "value": "5033",
          "description": "Coupa Internal Id for a Goods Receipt"
        }
      ]
    }
  },
  "response": [
  ]
}