action phantauth_get_team_teamname { label: "Get a Team" description: "Use this endpoint to generate a random group of users. The team is generated in a deterministic way, on the basis of the team name given as the path parameter.\nIn the case of identical team names, the endpoint will generate the same team object. The properties of the generated team object are randomly generated on the basis of the team name.\nIn lack of a team name, all calls generate a different team object to the randomly generated team name." provider: phantauth method: GET path: "/team/{teamname}" encoding: json input: { type: "object" properties: { teamname: { type: "string" } } required: ["teamname"] additionalProperties: false } output: { type: "object" required: ["sub"] properties: { "@id": { type: "string" description: "URL of the Teams's JSON representation." } logo: { type: "string" description: "The URL of the team logo, which can be customized by the gravatar associated with the email address in the `logo_email` property." } logo_email: { type: "string" description: "The email address of the team, either generated or provided in the `sub` property. The team logo can be customized by the use of the gravater associated with this email address." } members: { type: "array" description: "The user objects that generate a team member." items: { type: "object" } } name: { type: "string" description: "The displayed team name." } profile: { type: "string" description: "The URL of the Team profile." } sub: { type: "string" description: "The name or email address of a given team. The team properties and team members are generated from this name. If you provide an email address, you can customize the team logo by the use of the gravatar associated with the email address." } } } }