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