action vercel_get_records { label: "List existing DNS records" description: "Retrieves a list of DNS records created for a domain name. By default it returns 20 records if no limit is provided. The rest can be retrieved using the pagination options." provider: vercel method: GET path: "/v4/domains/{domain}/records" encoding: json input: { type: "object" properties: { domain: { type: "string" } limit: { type: "string" description: "Maximum number of records to list from a request." } since: { type: "string" description: "Get records created after this JavaScript timestamp." } teamId: { type: "string" } until: { type: "string" description: "Get records created before this JavaScript timestamp." } } required: ["domain"] additionalProperties: false } output: { type: "object" } }