Skip to main content
POST
/
groups
/
{groupId}
/
remove-people
Remove people from group
curl --request POST \
  --url https://api.vanta.com/v1/groups/{groupId}/remove-people \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "updates": [
    {
      "id": "<string>"
    }
  ]
}
'
{
  "results": [
    {
      "id": "person-id-1",
      "status": "SUCCESS"
    },
    {
      "id": "person-id-2",
      "status": "ERROR",
      "message": "Invalid Input"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://vanta.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

groupId
string
required

Body

application/json
updates
object[]
required

List of people IDs to remove from a group.

Required array length: 1 - 100 elements

Response

200 - application/json

Ok

results
object[]
required

List of results matching the length and order of the request