Team Memberships
Add a member to a team
Add a member to a team.
If you are using a personal access token, you must have "can manage" permission on the team or be a workspace manager.
post/v1/teams/{team_id}/team_memberships
Path parameters
team_idinteger required
The id of the team
Query parameters
send_emailboolean
Whether to notify the member about the team membership.
Request body
Example request
{
"id": 1234,
"member_id": 2489,
"team_id": 4285,
"team_permission": "cannot_manage",
"incident_permission": "can_edit"
}Response
Team membership created
Example response
{
"id": 1234,
"member_id": 2489,
"team_id": 4285,
"team_permission": "cannot_manage",
"incident_permission": "can_edit"
}