Skip to main content

List Governance Group Members

GET 

/workgroups/:workgroupId/members

This API returns list of members associated with a Governance Group.

Request

Path Parameters

    workgroupId stringrequired

    ID of the Governance Group.

Query Parameters

    offset int32

    Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.

    Example: 0
    limit int32

    Possible values: <= 50

    Default value: 50

    Note that for this API the maximum value for limit is 50. See V3 API Standard Collection Parameters for more information.

    Example: 50
    count boolean

    If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored.

    Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used.

    See V3 API Standard Collection Parameters for more information.

    Example: true
    sorters comma-separated

    Sort results using the standard syntax described in V3 API Standard Collection Parameters

    Sorting is supported for the following fields: name, created, modified

    Example: name,-modified

Responses

List all members associated with a Governance Group.

Schema
  • Array [
  • type string

    Possible values: [IDENTITY]

    Workgroup member identity DTO type.

    id string

    Workgroup member identity ID.

    name string

    Workgroup member identity display name.

    email string

    Workgroup member identity email.

  • ]
Loading...