Skip to main content

Add members to Governance Group

POST 

/workgroups/:workgroupId/members/bulk-add

experimental

This API is currently in an experimental state. The API is subject to change based on feedback and further testing. You must include the X-SailPoint-Experimental header and set it to true to use this endpoint.

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.

Header Parameters

    X-SailPoint-Experimental stringrequired

    Default value: true

    Use this header to enable this experimental API.

    Example: true

Body

array

required

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...