Group API

API to manage groups in Ketryx

Ketryx exposes an API to manage groups programmatically. See also the documentation on authentication and API keys.

Groups

List all groups and members

get
Responses
200
Successful response
application/json
get
GET /api/v1/groups HTTP/1.1
Host: app.ketryx.com
Accept: */*
{
  "groups": [
    {
      "id": "text",
      "name": "text",
      "userMembers": [
        {
          "userId": "text",
          "email": "text",
          "name": "text"
        }
      ],
      "groupMembers": [
        {
          "groupId": "text"
        }
      ]
    }
  ]
}

Last updated

Was this helpful?