POST
/
auth
/
send-signup-verification-code
curl --request POST \
  --url https://app.teable.io/api/auth/send-signup-verification-code \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN' \
  --header 'content-type: application/json' \
  --data '{"email":"user@example.com"}'
{
  "token": "<string>",
  "expiresTime": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
email
string
required

Response

200 - application/json
Resend signup verification code successfully
token
string
required
expiresTime
string
required