Skip to main content

Add members to Governance Group

POST 

/workgroups/:workgroupId/members/bulk-add

This API adds one or more members to a Governance Group. A token with API, ORG_ADMIN authority is required to call this API.

Following field of Identity is an optional field in the request.

name

Request

Path Parameters

    workgroupId stringrequired

    ID of the Governance Group.

Body

arrayrequired

List of identities to be added to a Governance Group members list.

  • Array [
  • type string

    Possible values: [IDENTITY]

    Identity's DTO type.

    id string

    Identity ID.

    name string

    Identity's display name.

  • ]

Responses

List of added and not added identities into Governance Group members list.

Schema
  • Array [
  • id stringrequired

    Identifier of identity in bulk member add request.

    status stringrequired

    The HTTP response status code returned for an individual member that is requested for addition during a bulk add operation.

    The HTTP response status code returned for an individual Governance Group is requested for deletion.

    201 - Identity is added into Governance Group members list.

    409 - Identity is already member of Governance Group.

    description string

    Human readable status description and containing additional context information about success or failures etc.

  • ]
Loading...