# Get User Status Retrieves the current status of the user, including reminders and login status. Endpoint: GET /users/{userId}/status Version: v1 Security: apiKeyAuth, bearerAuth ## Header parameters: - `vbasoftware-database` (string, required) Target database ## Path parameters: - `userId` (string, required) User ID ## Response 200 fields (text/plain): - `data` (object) Represents the status of a VBA user, including reminders and login status. - `data.reminders` (array,null) Gets or sets the list of reminders for the user. - `data.reminders.event_ID` (integer, required) ID of the event. Note: This field is marked as NOT NULL in the database and therefore required by the API. - `data.reminders.claim_Audit_Event` (boolean, required) Flag to indicate if the event triggers a Claim Audit. Note: This field is marked as NOT NULL in the database and therefore required by the API. - `data.reminders.completion_Date` (string,null) Date the Event was Completed. - `data.reminders.completion_Percent` (number,null) Current Percentage that the Event has Completed - `data.reminders.due_Date` (string,null) Due Date of the Event - `data.reminders.end_Date` (string,null) End Date of the Event - `data.reminders.entry_Date` (string) Date record was first added to the system - `data.reminders.entry_User` (string,null) User that first added the record to the system - `data.reminders.event_Processor` (string,null) Object used when processing the event - `data.reminders.event_Type` (string,null) Identifier for the type of event - `data.reminders.meta_Data` (string,null) Meta data pertaining to the overall event - `data.reminders.next_Scheduled_Date` (string,null) Date when the 'Assigned User' will receive the next event reminder. - `data.reminders.next_Scheduled_Time` (string,null) Date when the event is due. - `data.reminders.priority` (string,null) Indicates the level of priority being assigned to the event. - `data.reminders.process_Automation_Event` (boolean, required) Flag to indicate if the event triggers a Report Series. Note: This field is marked as NOT NULL in the database and therefore required by the API. - `data.reminders.reminder` (boolean, required) Indicates that the 'Assigned User' should receive a reminder regarding the event. Note: This field is marked as NOT NULL in the database and therefore required by the API. - `data.reminders.reminder_Event_ID` (integer,null) Event ID of the Reminder - `data.reminders.reportSeries_Key` (integer,null) The key of the Report Series this Event trigger. - `data.reminders.start_Date` (string,null) Start Date of the Event - `data.reminders.status` (string,null) Identifies the current status of the event. - `data.reminders.subject` (string,null) Description of the event subject. - `data.reminders.update_Date` (string) Date the record was last updated in the system - `data.reminders.update_User` (string,null) User that last updated the record in the system - `data.reminders.userGroup_Key` (integer,null) Key value identifying the User Group to whom the event is assigned - `data.reminders.user_ID` (string,null) ID of the User to whom the event is assigned. - `data.loginStatus` (integer,null) Gets or sets the current login status of the user. 1: LoggedIn 2: LoggedOut 3: Kicked - `error` (object) - `error.detail` (string,null) A human-readable explanation specific to this occurrence of the problem. - `error.instance` (string,null) A URI reference that identifies the specific occurrence of the problem.It may or may not yield further information if dereferenced. - `error.status` (integer) The HTTP status code([RFC7231], Section 6) generated by the origin server for this occurrence of the problem. - `error.title` (string,null) A short, human-readable summary of the problem type.It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization(e.g., using proactive content negotiation; see[RFC7231], Section 3.4). - `error.type` (string,null) A URI reference [RFC3986] that identifies the problem type. This specification encourages that, when dereferenced, it provide human-readable documentation for the problem type (e.g., using HTML [W3C.REC-html5-20141028]). When this member is not present, its value is assumed to be "about:blank". - `debug` (object) - `debug.activityID` (string, required) ## Response 401 fields