Skip to main content
POST
/
inbound
/
forward-destinations
/
verify
Consume a forwarding-destination verification token
curl --request POST \
  --url https://api.jetemail.com/inbound/forward-destinations/verify \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "lkM2_oXk-OQAAAAA..."
}
'
{
  "success": true,
  "status": "verified",
  "email": "[email protected]",
  "rules_updated": 3
}

Body

application/json
token
string
required

Opaque verification token from the email link's ?token= query parameter.

Example:

"lkM2_oXk-OQAAAAA..."

Response

Token consumed (or was already consumed for this destination)

success
boolean
Example:

true

status
enum<string>
Available options:
verified,
already_verified
Example:

"verified"

email
string<email>
rules_updated
integer

Number of forwarding rules flipped to verified = 1 by this request. Only present when status = verified.

Example:

3