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-invite

GET /api/v1/share-invite/{share_id}/{token}

Get validate Share Invite

validateShareInvite validates a share invite token

Parameters

NameInTypeRequired
share_idpathstringtrue
tokenpathstringtrue

Response

Type: ValidateShareInviteResponse

Example

curl -X GET \
  -H "Authorization: Bearer <token>" \
  https://api.seeme.ai/api/v1/share-invite/{share_id}/{token}