action appcenter_users_list_for_org { label: "users_listForOrg" description: "Returns a list of users that belong to an organization" provider: appcenter method: GET path: "/v0.1/orgs/{org_name}/users" encoding: json input: { type: "object" properties: { org_name: { type: "string" } } required: ["org_name"] additionalProperties: false } output: { type: "array" items: { required: ["display_name", "email", "joined_at", "name", "role"] properties: { 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" } joined_at: { type: "string" description: "The date when the user joined the organization" } name: { type: "string" description: "The unique name that is used to identify the user." } role: { type: "string" description: "The role the user has within the organization" } } } } }