Vercel provides an API for domain management. However, I encountered an issue with the domain verification process.
I tested both of the following endpoints:
According to the documentation, if a domain is not verified, the response should include a verification challenge like this:
{
"verified": false,
"verification": [
{
"type": "TXT",
"domain": "_verification.example.com",
"value": "vercel-site-verification=abcd1234efgh5678",
"reason": "We need to verify that you own the domain by checking for a TXT record."
}
]
}
However, both endpoints are currently returning "verified": true
even for domains that have not been verified, and no verification
challenge data is included.
This behavior seems incorrect and inconsistent with the documentation.
Please look into this and fix the issue.
Thank you.