Chilkat Online Tools

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

Back to Collection Items

var

begin
CkJsonObject_UpdateString(queryParams,'period[name]','2020 Q3 - C100');CkHttp_putAuthToken(http,'<access_token>');


Curl Command

curl -G -d "period[name]=2020%20Q3%20-%20C100"
	-H "Authorization: Bearer <access_token>"
https://domain.com/budget_lines

Postman Collection Item JSON

{
  "name": "Get budget lines by period",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/budget_lines?period[name]=2020 Q3 - C100",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "budget_lines"
      ],
      "query": [
        {
          "key": "period[name]",
          "value": "2020 Q3 - C100"
        }
      ]
    }
  },
  "response": [
  ]
}