Documentation Index
Fetch the complete documentation index at: https://mintlify.com/subratomandal/dyeink/llms.txt
Use this file to discover all available pages before exploring further.
Adds a custom domain to the Vercel project. This is an internal endpoint that communicates with the Vercel API to register the domain.
Body Parameters
The custom domain to add (e.g., “blog.example.com”)
Response
Whether the domain was successfully added
Whether the domain is immediately verified (rare, usually when domain was previously configured)
curl -X POST https://api.dyeink.com/api/domains/add \
-H "Content-Type: application/json" \
-d '{
"domain": "blog.example.com"
}'
{
"success": true,
"verified": false
}