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
Responses
200
Successful response
application/json
default
Error 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?