action smart_me_user_get { label: "Gets the informations for the user." description: "Gets the informations for the user." provider: smart_me method: GET path: "/api/User" encoding: json output: { type: "object" description: "Container Class for the Web API" properties: { ChildUsers: { type: "array" description: "The Users created by this users." items: { type: "object" additionalProperties: true } } Email: { type: "string" description: "The EMail Address of the User" } Id: { type: "integer" format: "int64" description: "The ID of the User" } IdAsString: { type: "string" description: "The ID of the user as string" } IsAdmin: { type: "boolean" description: "Flag if this User is an Admin User" } Permissions: { type: "array" description: "Additional Permissions" items: { type: "string" } } Username: { type: "string" description: "The Username of the User" } } } }