v1
latestOpenAPI 3.0.02026-07-2466275257.1 KBteam
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
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"
}
}