Returns list of Groups of a particular user

Returns a list of groups the user is a member of.

GET /policies/{policyId}/groups

Returns a list of groups the user is a member of.

Path Parameters

NameTypeDescription

policyId*

String

Selected policy ID.

{
    content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    uuid:
                      type: string
                    role:
                      type: string
                    groupLabel:
                      type: string
                    groupName:
                      type: string
                    active:
                      type: boolean
}

Last updated