action vercel_list_deployment_aliases { label: "List Deployment Aliases" description: "Retrieves all Aliases for the Deployment with the given ID. The authenticated User must own the deployment." provider: vercel method: GET path: "/v2/deployments/{id}/aliases" encoding: json input: { type: "object" properties: { id: { type: "string" description: "The ID of the deployment the aliases should be listed for" } teamId: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["aliases"] properties: { aliases: { type: "array" description: "A list of the aliases assigned to the deployment" items: { type: "object" description: "A list of the aliases assigned to the deployment" required: ["uid", "alias", "created"] properties: { alias: { type: "string" description: "The alias name, it could be a `.vercel.app` subdomain or a custom domain" } created: { type: "string" format: "date-time" description: "The date when the alias was created" } protectionBypass: { type: "object" description: "Construct a type with a set of properties K of type T" } redirect: { type: ["string", "null"] description: "Target destination domain for redirect when the alias is a redirect" } uid: { type: "string" description: "The unique identifier of the alias" } } } } } } }