GET
/
v1
/
groups
List Groups
curl --request GET \
  --url https://public.api.serval.com/v1/groups \
  --header 'Authorization: Bearer <token>'
{
  "groups": [
    {
      "id": "<string>",
      "name": "<string>",
      "externalSource": {
        "type": "<string>",
        "service": "<string>",
        "externalId": "<string>",
        "appInstanceId": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json

Success

The response is of type object.