Skip to main content
GET
/
company
/
user
/
list
Get users by group profile
curl --request GET \
  --url https://api-stage.karmacheck.io/company/user/list \
  --header 'Authorization: Bearer <token>'
{
  "users": [
    {
      "id": "f7bdbab9-fb9f-4c24-928d-91700030e5bc",
      "givenName": "John",
      "familyName": "Doe",
      "enabled": 0
    },
    {
      "id": "f7bdbab9-fb9f-4c24-928d-91700030e5ab",
      "givenName": "Jane",
      "familyName": "Doe",
      "enabled": 1
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

groupProfileId
string

Response

OK

users
User · object
required

This model represents a User entity that is returned by the Get Users By Group Profile API.