action appcenter_users_list { label: "users_list" description: "Returns the users associated with the app specified with the given app name which belongs to the given owner." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/users" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { type: "array" items: { required: ["id", "display_name", "email", "name", "origin"] 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" } name: { type: "string" description: "The unique name that is used to identify the user." } origin: { type: "string" description: "The creation origin of this user" enum: ["appcenter", "hockeyapp", "codepush"] } permissions: { type: "array" description: "The permissions the user has for the app" items: { type: "string" enum: ["manager", "developer", "viewer", "tester"] } } } } } }