Team Invites
Team Invites
POST /api/v1/team-invite
Create accept Team Invite
acceptTeamInvite accepts a team invite and creates the user account
Request Body
Type: AcceptTeamInviteRequest
Example
curl -X POST \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{}' \
https://api.seeme.ai/api/v1/team-inviteGET /api/v1/team-invite/{invite_id}/{token}
Get validate Team Invite
validateTeamInvite validates a team invite token
Parameters
| Name | In | Type | Required |
|---|---|---|---|
invite_id | path | string | true |
token | path | string | true |
Response
Type: ValidateTeamInviteResponse
Example
curl -X GET \
-H "Authorization: Bearer <token>" \
https://api.seeme.ai/api/v1/team-invite/{invite_id}/{token}