action appcenter_users_get { label: "users_get" description: "Returns the user profile data" provider: appcenter method: GET path: "/v0.1/user" encoding: json output: { required: ["display_name", "email", "id", "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"] } } } } }