Skip to main content

Remove members from Governance Group

POST 

/workgroups/:workgroupId/members/bulk-delete

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 removes one or more members from 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 removed from 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 deleted and not deleted identities from Governance Group members list.

Schema

  • Array [

  • id stringrequired

    Identifier of identity in bulk member add /remove request.

    status stringrequired

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

    204 - Identity is removed from Governance Group members list.

    404 - Identity is not member of Governance Group.

    description string

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

  • ]

Loading...