Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Add a sending domain
cURL
curl --request POST \ --url https://api.sequenzy.com/api/v1/websites \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "domain": "<string>" } '
{ "success": true, "website": { "domain": "mail.example.com", "status": "pending", "message": "Domain added. Configure DNS records and verify to start sending." } }
curl -X POST "https://api.sequenzy.com/api/v1/websites" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"domain": "mail.example.com"}'