Signup
Verify Email Token
post
/v1/signup/verify-emailRedeem 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
tokenstringrequired
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 Responseemailstringrequired
No additional field description.
namestringrequired
No additional field description.
tenant_idstringrequired
No additional field description.
tenant_slugstringrequired
No additional field description.
tenant_statusstringrequired
No additional field description.
application/json
{
"email": "string",
"name": "string",
"tenant_id": "string",
"tenant_slug": "string",
"tenant_status": "string"
}422Validation ErrordetailValidationError[]
No additional field description.
Operation ID
verify_email_token_v1_signup_verify_email_post