Get user group by lead user

GET/v1/users/group/by-lead/{uuid}

Path parameters

  • uuidstringRequired#
    Unique identifier of the lead user.

Responses

200User group for the given lead user.UserGroupAccountResource
/** Imported from delio-core. */
interface UserGroupAccountResource {
  /** uuid from delio-core. */
  uuid: string
  /** unreadNotificationsCount from delio-core. */
  unreadNotificationsCount: number
  /** users from delio-core. */
  users: UserGroupByLeadResource[]
}
401Unauthorized.Error
404Not found.Error
curl https://your-url.com/kong/core/api/gateway/v1/users/group/by-lead/{uuid}\
  -H "Authorization: Bearer $DELIO_API_KEY"\
  -H "Content-Type: application/json"