action appcenter_distribution_groups_list_users_for_org { label: "distributionGroups_listUsersForOrg" description: "Returns a list of member in the distribution group specified" provider: appcenter method: GET path: "/v0.1/orgs/{org_name}/distribution_groups/{distribution_group_name}/members" encoding: json input: { type: "object" properties: { distribution_group_name: { type: "string" } org_name: { type: "string" } } required: ["distribution_group_name", "org_name"] additionalProperties: false } output: { type: "array" items: { required: ["email"] properties: { avatar_url: { type: "string" description: "The avatar URL of the user" } can_change_password: { type: "boolean" description: "User is required to send an old password in order to change the password." } display_name: { type: "string" description: "The full name of the user. Might for example be first and last name" } email: { type: "string" description: "The email address of the user" } id: { type: "string" format: "uuid" description: "The unique id (UUID) of the user" } invite_pending: { type: "boolean" description: "Whether the has accepted the invite. Available when an invite is pending, and the value will be \"true\"." } name: { type: "string" description: "The unique name that is used to identify the user." } } } } }