Skip to content

Changelog

Learn about new developer features and improvements.

API updates - Groups

Qlik is announcing a 30-day deprecation window for an unpublished endpoint on the Groups API.

No sooner than 30 days from the date of this notice, GET /api/v1/groups/user-claims/:userID will be removed from the Groups API.

To migrate to a published endpoint, use GET /api/v1/users/:id.

Terminal window
curl "https://<TENANT>/api/v1/users/<USER_ID>?fields=groups" \
-H "Authorization: Bearer <ACCESS_TOKEN>"
Terminal window
# Http 200 - Ok
{
"id": "<USER_ID>",
"groups": [
"accounting",
"developer"
]
}