Resend managed cloud signup verification REST API
POST
/api/cloud/signup/resend-verification
const url = 'http://127.0.0.1:25737/api/cloud/signup/resend-verification';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"email":"hello@example.com"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://127.0.0.1:25737/api/cloud/signup/resend-verification \ --header 'Content-Type: application/json' \ --data '{ "email": "hello@example.com" }'Requests another verification email for a password-based managed cloud signup. Valid requests receive the same response regardless of account state.
Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
email
required
string format: email
Examplegenerated
{ "email": "hello@example.com"}Responses
Section titled “Responses”Signup verification resend accepted
Media typeapplication/json
object
retry_after_seconds
required
integer
status
required
string
Example
{ "status": "accepted"}Invalid request
Media typeapplication/json
object
message
string
Examplegenerated
{ "message": "example"}Cloud signup disabled
Media typeapplication/json
object
message
string
Examplegenerated
{ "message": "example"}Too many requests
Media typeapplication/json
object
message
string
Examplegenerated
{ "message": "example"}