action vercel_get_project_domain { label: "Get a project domain" description: "Get project domain by project id/name and domain name." provider: vercel method: GET path: "/v9/projects/{idOrName}/domains/{domain}" encoding: json input: { type: "object" properties: { domain: { type: "string" description: "The project domain name" } idOrName: { type: "string" description: "The unique project identifier or the project name" } teamId: { type: "string" } } required: ["domain", "idOrName"] additionalProperties: false } output: { type: "object" required: ["apexName", "name", "projectId", "verified"] properties: { apexName: { type: "string" } createdAt: { type: "number" } gitBranch: { type: ["string", "null"] } name: { type: "string" } projectId: { type: "string" } redirect: { type: ["string", "null"] } redirectStatusCode: { type: ["number", "null"] enum: [307, 301, 302, 308] } updatedAt: { type: "number" } verification: { type: "array" description: "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`." items: { type: "object" description: "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`." required: ["type", "domain", "value", "reason"] properties: { domain: { type: "string" } reason: { type: "string" } type: { type: "string" } value: { type: "string" } } } } verified: { type: "boolean" description: "`true` if the domain is verified for use with the project. If `false` it will not be used as an alias on this project until the challenge in `verification` is completed." } } } }