Groups

List grouped teammates for the current user.

Returns all groups the caller belongs to. For each group, members exclude the caller and are sorted by username.

GET
/groups/members

Authorization

token_auth
AuthorizationBearer <token>

Token-based authentication using access tokens.

In: header

Response Body

application/json

application/json

curl -X GET "https://v2.api.piktid.com/groups/members"
{
  "groups": [
    {
      "name": "string",
      "members": [
        {
          "username": "string",
          "name": "string"
        }
      ]
    }
  ]
}
{
  "error": "Invalid request",
  "detail": [
    {
      "field": null,
      "message": "string",
      "position": "query"
    }
  ]
}
Empty