AddProjectDomainVerification
April 11, 2025 ยท View on GitHub
A list of verification challenges, one of which must be completed to verify the domain for use on the project. After the challenge is complete POST /projects/:idOrName/domains/:domain/verify to verify the domain. Possible challenges: - If verification.type = TXT the verification.domain will be checked for a TXT record matching verification.value.
Example Usage
import { AddProjectDomainVerification } from "@vercel/sdk/models/addprojectdomainop.js";
let value: AddProjectDomainVerification = {
type: "<value>",
domain: "potable-chiffonier.com",
value: "<value>",
reason: "<value>",
};
Fields
| Field | Type | Required | Description |
|---|---|---|---|
type | string | :heavy_check_mark: | N/A |
domain | string | :heavy_check_mark: | N/A |
value | string | :heavy_check_mark: | N/A |
reason | string | :heavy_check_mark: | N/A |