Chilkat Online Tools

Delphi (DLL) / Coupa Postman Collection - OAuth - Master / Get budget lines

Back to Collection Items

var

begin
CkJsonObject_UpdateString(queryParams,'fields','["id"]');CkHttp_putAuthToken(http,'<access_token>');


Curl Command

curl -G -d "fields=%5B%22id%22%5D"
	-H "Authorization: Bearer <access_token>"
https://domain.com/budget_lines

Postman Collection Item JSON

{
  "name": "Get budget lines",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/budget_lines?fields=[\"id\"]",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "budget_lines"
      ],
      "query": [
        {
          "key": "fields",
          "value": "[\"id\"]"
        }
      ]
    }
  },
  "response": [
  ]
}