Update Team Members

Request

PUT /v2/teams/10/members HTTP/1.1
Authorization: Bearer oauth_token
Content-Type: application/json

{
  "addedUserIds" : [ 10, 11 ],
  "deletedUserIds" : [ 5 ]
}

Path Parameters

/v2/teams/{teamId}/members

Request fields

Path Type Required Description
addedUserIds Array Y List of user IDs to add to the team
deletedUserIds Array Y List of user IDs to remove from the team

Response

HTTP/1.1 204 No Content