Chilkat Online Tools

Unicode C++ / Coupa Postman Collection - OAuth - Master / Retrieve legal agreement

Back to Collection Items

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

Curl Command

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

Postman Collection Item JSON

{
  "name": "Retrieve legal agreement",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/contracts/:id/retrieve_legal_agreement",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "contracts",
        ":id",
        "retrieve_legal_agreement"
      ],
      "variable": [
        {
          "key": "id",
          "value": "465",
          "type": "string"
        }
      ]
    }
  },
  "response": [
  ]
}