Chilkat Online Tools

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

Back to Collection Items

Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set outFile = fso.CreateTextFile("output.txt", True)

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

set http = CreateObject("Chilkat_9_5_0.Http")

set queryParams = CreateObject("Chilkat_9_5_0.JsonObject")
success = 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 is a Chilkat_9_5_0.HttpResponse
Set resp = http.QuickRequestParams("GET","https://domain.com/receiving_transactions/:id",queryParams)
If (http.LastMethodSuccess = 0) Then
    outFile.WriteLine(http.LastErrorText)
    WScript.Quit
End If

outFile.WriteLine(resp.StatusCode)
outFile.WriteLine(resp.BodyStr)


outFile.Close

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": [
  ]
}