void ChilkatSample(void) { http.put_AuthToken(L"<access_token>"); success = http.QuickGetSb(L"https://domain.com/users/",sbResponseBody); }
curl -X GET -H "Authorization: Bearer <access_token>" https://domain.com/users/
{
  "name": "Retrieve all Users",
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{URL}}/users/",
      "host": [
        "{{URL}}"
      ],
      "path": [
        "users",
        ""
      ]
    }
  },
  "response": [
  ]
}