Chilkat Online Tools

Unicode C++ / Coupa Postman Collection - OAuth - Master / Get Statements by ID

Back to Collection Items

void ChilkatSample(void)
    {
    http.put_AuthToken(L"<access_token>");    success = http.QuickGetSb(L"https://domain.com/coupa_pay/statements/:id",sbResponseBody);
    }

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
https://domain.com/coupa_pay/statements/:id

Postman Collection Item JSON

{
  "name": "Get Statements by ID",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/coupa_pay/statements/:id",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "coupa_pay",
        "statements",
        ":id"
      ],
      "variable": [
        {
          "key": "id",
          "value": "2"
        }
      ]
    }
  },
  "response": [
  ]
}