POST
/
invitation
/
link
/
accept
curl --request POST \
  --url https://app.teable.io/api/invitation/link/accept \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/json' \
  --data '{"invitationCode":"string","invitationId":"string"}'
{
  "spaceId": "<string>",
  "baseId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
invitationCode
string
required
invitationId
string
required

Response

201 - application/json
Successful response, return the spaceId or baseId of the invitation link.
spaceId
string | null
required
baseId
string | null
required