v1

latestOpenAPI 3.0.02026-07-2466275257.1 KB
team

Join a team with invitation token

This endpoint enables users to join a team using a valid and unexpired invitation token. Users send a POST request that includes the invitationToken to authenticate their request to join the specified team. This ensures only those with valid and unexpired tokens can join the team.

post/v2/join-team-by-token

Request body

invitationTokenstring required

A valid token required to authorize the request to join the team. You can retrieve the invitation token by using the Invite a user to the team endpoint.

Example request

{
  "invitationToken": "ABC123"
}

Response

The user has successfully joined the team using the provided invitation token.

Example response

{
  "userAccess": {
    "id": "user-456",
    "namespace": "marketing-dept",
    "clientIp": "192.168.1.100"
  }
}