action smart_me_sub_user_get { label: "Get a sub user. The user must be assigend to the user that makes this call." provider: smart_me method: GET path: "/api/SubUser/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Container data for the sub user" properties: { AccessEndDate: { type: "string" format: "date-time" description: "The end date. until this date the user has access" } AccessTimeStartDate: { type: "string" format: "date-time" description: "The start date. From this date the user has access" } Email: { type: "string" description: "The Email adress" } Id: { type: "string" description: "The ID of the user" } NewPassword: { type: "string" description: "If set this is used a new password" } PermissionLevel: { type: "string" description: "The permission level of the user" enum: ["SelectedFolderAndSubfoldersMeters", "SelectedFolderOnly"] } Username: { type: "string" description: "The username" } } } }