action zeit_get_domains { label: "Gets a list of domains registered for the authenticating user." provider: zeit method: GET path: "/v4/domains" encoding: json input: { type: "object" properties: { teamId: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["domains"] properties: { domains: { type: "array" description: "An Array of domains for the given account" items: { type: "object" required: ["boughtAt", "cdnEnabled", "createdAt", "expiresAt", "id", "intendedNameservers", "name", "nameservers", "nsVerifiedAt", "serviceType", "txtVerifiedAt", "verificationRecord", "verified"] properties: { boughtAt: { type: "integer" description: "A timestamp to tell when the domain was purchase if it was purchased with ZEIT" } cdnEnabled: { type: "boolean" description: "Wether the Cloudfare CDN is enabled for the domain or not" } createdAt: { type: "integer" description: "A timestamp that shows when the domain was created" } expiresAt: { type: "integer" description: "The expiration date for the domain in case it's in ZEIT" } id: { type: "string" description: "The unique identifier of the domain." } intendedNameservers: { type: "array" description: "The set of nameservers ZEIT requires the user to set to verify the domain with Nameservers" items: { type: "string" description: "An intended nameserver for the domain" } } name: { type: "string" description: "The domain name including the TLD" } nameservers: { type: "array" description: "The current nameservers we have detected for the domain" items: { type: "string" description: "A nameserver the domain has set" } } nsVerifiedAt: { type: "integer" description: "The timestamp of the last time the domain was verified using Nameservers" } orderedAt: { type: "integer" description: "A timestamp indicating when the domain was ordered if it was purchased with ZEIT" } serviceType: { type: "string" description: "Indicates the current DNS service the domain is using" enum: ["zeit.world", "external", "na"] } transferredAt: { type: "integer" description: "If the domain was transferred to ZEIT, it indicates the timestamp for when the transfer was started" } txtVerifiedAt: { type: "integer" description: "The timestamp of the last time the domain was verified using a TXT record" } verificationRecord: { type: "string" description: "Indicates the verification record that should be used to verify the domain using a TXT record" } verified: { type: "boolean" description: "Indicates if the domain ownership was already verified" } } } } } } }