action vercel_get_cert_by_id { label: "Get cert by id" description: "Get cert by id" provider: vercel method: GET path: "/v7/certs/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" description: "The cert id" } teamId: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["autoRenew", "cns", "createdAt", "expiresAt", "id"] properties: { autoRenew: { type: "boolean" } cns: { type: "array" items: { type: "string" } } createdAt: { type: "number" } expiresAt: { type: "number" } id: { type: "string" } } } }