action vercel_get_deployment_file_contents { label: "Get Deployment File Contents" description: "Allows to retrieve the content of a file by supplying the file identifier and the deployment unique identifier. The response body will contain the raw content of the file." provider: vercel method: GET path: "/v6/deployments/{id}/files/{fileId}" encoding: json input: { type: "object" properties: { fileId: { type: "string" description: "The unique file identifier" } id: { type: "string" description: "The unique deployment identifier" } teamId: { type: "string" } } required: ["fileId", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }