Chilkat Online Tools

Unicode C++ / Anypoint Platform APIs / Get all rolegroups

Back to Collection Items

void ChilkatSample(void)
    {
    queryParams.UpdateString(L"include_internal",L"false");    queryParams.UpdateInt(L"limit",25);    queryParams.UpdateInt(L"offset",0);    queryParams.UpdateString(L"search",L"");    http.put_AuthToken(L"{{token}}");
    }

Curl Command

curl -G -d "include_internal=false"
	-d "limit=25"
	-d "offset=0"
	-d "search="
	-H "Authorization: Bearer {{token}}"
https://domain.com/accounts/api/organizations/{{organization_id}}/rolegroups

Postman Collection Item JSON

{
  "name": "Get all rolegroups",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{token}}",
        "type": "text"
      }
    ],
    "url": {
      "raw": "{{url}}/accounts/api/organizations/{{organization_id}}/rolegroups?include_internal=false&limit=25&offset=0&search=",
      "host": [
        "{{url}}"
      ],
      "path": [
        "accounts",
        "api",
        "organizations",
        "{{organization_id}}",
        "rolegroups"
      ],
      "query": [
        {
          "key": "include_internal",
          "value": "false"
        },
        {
          "key": "limit",
          "value": "25"
        },
        {
          "key": "offset",
          "value": "0"
        },
        {
          "key": "search",
          "value": ""
        }
      ]
    }
  },
  "response": [
  ]
}