FrameMe
  1. Default
FrameMe
  • Default module
    • Devices
      • Get Init Device
      • Init remote device
    • Prompts
    • Schemas
      • device
      • prompts
      • organization
      • user
      • member
      • event
  • FrameMe Admin API
    • Authentication
      • Better Auth GET endpoint
      • Better Auth POST endpoint
    • Invitations
      • Accept organization invitation
    • Devices
      • Validate device credentials
      • Disconnect device
      • Delete device
    • Prompts
      • Get prompts by device ID
      • Create a new prompt
    • Generation
      • Generate image with Flux AI
      • Poll for generation result
      • Demo API endpoint
    • Notifications
      • Send notification via NTFY
    • Upload
      • Upload file to S3
    • Schemas
      • Error
      • User
      • Device
      • Prompt
      • PromptInput
      • FluxGenerationRequest
      • FluxResponse
      • FluxResult
      • Organization
      • Member
      • Invitation
  • Frameme
    • Default
      • socialSignIn
        POST
      • /get-session
        GET
      • /sign-out
        POST
      • /sign-up/email
        POST
      • /sign-in/email
        POST
      • /forget-password
        POST
      • /reset-password
        POST
      • /verify-email
        GET
      • /send-verification-email
        POST
      • /change-email
        POST
      • /change-password
        POST
      • /update-user
        POST
      • /delete-user
        POST
      • /reset-password/{token}
        GET
      • /request-password-reset
        POST
      • /list-sessions
        GET
      • /revoke-session
        POST
      • /revoke-sessions
        POST
      • /revoke-other-sessions
        POST
      • /link-social
        POST
      • /list-accounts
        GET
      • /delete-user/callback
        GET
      • /unlink-account
        POST
      • /refresh-token
        POST
      • /get-access-token
        POST
      • /account-info
        POST
      • /ok
        GET
      • /error
        GET
    • Admin
      • setRole
      • getUser
      • createUser
      • updateUser
      • listUsers
      • listUserSessions
      • unbanUser
      • banUser
      • impersonateUser
      • /admin/stop-impersonating
      • revokeUserSession
      • revokeUserSessions
      • removeUser
      • setUserPassword
      • /admin/has-permission
    • Passkey
      • /passkey/generate-register-options
      • /passkey/generate-authenticate-options
      • /passkey/verify-registration
      • /passkey/verify-authentication
      • /passkey/list-user-passkeys
      • /passkey/delete-passkey
      • /passkey/update-passkey
    • Multi-session
      • /multi-session/list-device-sessions
      • /multi-session/set-active
      • /multi-session/revoke
    • Magic-link
      • /sign-in/magic-link
      • /magic-link/verify
    • Email-otp
      • /email-otp/send-verification-otp
      • /email-otp/check-verification-otp
      • /email-otp/verify-email
      • /sign-in/email-otp
      • /forget-password/email-otp
      • /email-otp/reset-password
    • Organization
      • /organization/create
      • /organization/update
      • /organization/delete
      • /organization/set-active
      • /organization/get-full-organization
      • /organization/list
      • /organization/invite-member
      • /organization/cancel-invitation
      • /organization/accept-invitation
      • /organization/get-invitation
      • /organization/reject-invitation
      • /organization/list-invitations
      • /organization/get-active-member
      • /organization/check-slug
      • /organization/remove-member
      • /organization/update-member-role
      • /organization/leave
      • /organization/list-user-invitations
      • /organization/list-members
      • /organization/get-active-member-role
      • /organization/has-permission
    • Schemas
      • User
      • Prompt
      • Session
      • Device
      • Apikey
      • Account
      • Verification
      • Event
      • Passkey
      • Organization
      • Member
      • Invitation
      • PromptTemplates
      • RouteProtection
      • DeviceInformation
  1. Default

/send-verification-email

POST
/send-verification-email
Send a verification email to the user

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params application/json

Examples

Responses

🟢200OK
application/json
Success
Body

🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
🟠429Too Many Requests
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/send-verification-email' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "user@example.com",
    "callbackURL": "https://example.com/callback"
}'
Response Response Example
200 - Example 1
{
    "status": true
}
Modified at 2025-11-11 19:04:55
Previous
/verify-email
Next
/change-email
Built with