I am building a multi-tenant application that allows users to connect their own custom domains. When I make a post request to...
https://api.vercel.com/v10/projects/${projectId}/domains?teamId=${teamId}
... it returns json with verified = true despite not being verified yet. When I check in my vercel dashboard, I see the new domain there, but since I have not yet configured the dns records, it is not yet verified.
I've also tried subsequently making a get request to...
https://api.vercel.com/v9/projects/${projectId}/domains/${domain}?teamId=${teamId}
... but that also returns verified = true
Any help would be appreciated!