action appcenter_distribution_groups_list_all_testers_for_org { label: "distributionGroups_listAllTestersForOrg" description: "Returns a unique list of users including the whole organization members plus testers in any shared group of that org" provider: appcenter method: GET path: "/v0.1/orgs/{org_name}/testers" encoding: json input: { type: "object" properties: { org_name: { type: "string" } } required: ["org_name"] additionalProperties: false } output: { type: "array" items: { required: ["name", "email"] properties: { display_name: { type: "string" description: "The full name of the tester. Might for example be first and last name" } email: { type: "string" description: "The email address of the tester" } name: { type: "string" description: "The unique name that is used to identify the tester." } } } } }