v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Teams > Membership

Creates a Membership

Assign an employee to a team, meaning create a membership.

post/api/2026-07-01/resources/teams/memberships

Request body

team_idstring required

Team id.

employee_idstring required

Employee id.

leadboolean

Makes the employee a lead of the team.

Example request

{
  "team_id": "1",
  "employee_id": "5",
  "lead": true
}

Response

CREATED

idstring required

Membership ID

company_idstring

Company ID of the membership

employee_idstring required

Employee ID of the membership

team_idstring required

Team ID of the membership

leadboolean required

Whether the employee is a lead of the team or not

Example response

{
  "id": "1",
  "company_id": "5",
  "employee_id": "12",
  "team_id": "4",
  "lead": true
}