action phantauth_get_domain_domainname { label: "Get a Domain" description: "This endpoint allows you to get the data of a given PhantAuth domain. To use the PhantAuth services, you don't need this endpoint.\nIt is, therefore, mainly used for debug/diagnostic purposes in tenant customization.\n\nDomainname is the fully qualified DNS name of the domain you get (e.g. *phantauth.net* or *phantauth.cf*)." provider: phantauth method: GET path: "/domain/{domainname}" encoding: json input: { type: "object" properties: { domainname: { type: "string" } } required: ["domainname"] additionalProperties: false } output: { type: "object" properties: { "@id": { type: "string" description: "The URL of the domain's JSON representation." } logo: { type: "string" description: "The URL of the domain logo. The image from this address is displayed on the webpage of the domain." } members: { type: "array" description: "The tenants included in a domain." items: { type: "object" } } name: { type: "string" description: "The displayed domain name." } profile: { type: "string" description: "The URL of the domain's webpage." } sub: { type: "string" description: "The fully qualified DNS name of the domain (e.g. phantauth.net)." } } } }