Remove users
Foreword
HTTP method : POST
v2/teams/{teamId}/users/batch/remove
The teamId
parameter allows you to define the team you need to update.
Parameter | Description | Format |
---|---|---|
teamId | Team Id | String |
Request body
A maximum of 100 items is allowed per call.
{
"users": [
{
"id": "string"
}
]
}
Response
200 OK
{
"metadata": {
"requestId": "string",
"errors": 0,
"successes": 0
},
"errors": [
{
"code": "string",
"message": "string",
"index": 0
}
]
}