Skip to main content
GET
/
api
/
ext
/
generic
/
email
/
email-tester
Get email tester endpoint
curl --request GET \
  --url https://app.spotzee.com/api/ext/generic/email/email-tester \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": {
    "result": "Operation completed successfully"
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Use format: Bearer YOUR_API_KEY

Response

Successfully generated test email address

status
enum<string>
required
Available options:
success
data
any | null

Response data specific to the endpoint

Example:
{
  "result": "Operation completed successfully"
}