Staging environment — data here is not production data
Browse documentation
Signup

Verify Email Token

post/v1/signup/verify-email

Redeem the emailed link and sign the operator in. Issuing the session here is deliberate: the person just proved control of the address, and making them retype a password they set 30 seconds ago is friction with no security value.

Authentication

Send your tenant secret key as a Bearer token. Keep secret keys on your server; never ship them in browser or mobile code.

Request body

JSON · required

token
stringrequired

No additional field description.

Example request

cURL
curl --request POST \
  --url 'https://api.fideralabs.com/v1/signup/verify-email' \
  --header 'Authorization: Bearer $FIDERA_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
  "token": "string"
}'

Responses

200Successful Response
email
stringrequired

No additional field description.

name
stringrequired

No additional field description.

tenant_id
stringrequired

No additional field description.

tenant_slug
stringrequired

No additional field description.

tenant_status
stringrequired

No additional field description.

application/json
{
  "email": "string",
  "name": "string",
  "tenant_id": "string",
  "tenant_slug": "string",
  "tenant_status": "string"
}
422Validation Error
detail
ValidationError[]

No additional field description.

Operation ID

verify_email_token_v1_signup_verify_email_post