Skip to content
post

Create email verification

Endpoint

posthttps://<REGION>.cloud.appwrite.io/v1/account/verification

Description

Required scopes

account

Authentication

Initialize the Appwrite client with setProject() and a signed-in user (setSession() or setJWT()). For direct REST calls, send X-Appwrite-Project with session/JWT headers.

Rate limit

Up to 10 requests per hour for each user calling this endpoint.
Server API key requests bypass this rate limit.

Parameters

string
Required
Status
Content type
201
application/json

Token

Name
Type
Description
string
string
string
string
string
Ruby
require 'appwrite'
include Appwrite
client = Client.new
.set_endpoint('https://<REGION>.cloud.appwrite.io/v1') # Your API Endpoint
.set_project('5df5acd0d48c2') # Your project ID
.set_jwt('eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ...') # Your secret JSON Web Token
account = Account.new(client)
response = account.create_verification(url: 'https://example.com')
puts response.inspect