Operations for a Single User. Modify the logon status relevant fields.

Application User Logon Status
POST

Required POST

  • Parameters (body Payload)
    • User ID (user_id)
      • GUID identifying an application user (Obtained by a Users Search).
    • Login Status Action (login_status_action)
      • Allowed values
        • S … Successfuly
        • E … Logon was not successfuly.
          • Login error count will increased. If the errour count reaches the configurable maximum login error limit, the user will get locked (see reponse field locked)
        • P … Password Changed
          • The last password change field will be filled according to the time_stamp parameter
          • The failed login count will get cleared. The locked flag will get cleared.
        • R … A password reset should get executed. The last_password_reset field will be filled according to the time_stamp parameter
    • Time Stamp (time_stamp)
      • The UI time stamp

Example POST

JSON body Payload:

{
  "data": {
    "user_id": "000C29F0318A1EDAA5A7B16720BB6B79"
  },
  "login_status_action": "R",
  "time_stamp": "20251113135122"
}

Same definition as above GET response. A created user record will include the user_id in the response. Modified records will include changed data in the response. Delete will not return a response detail record.

  • public/docs/webarapi/v140/applicationuserlogonstatus.txt
  • Last modified: 2025/11/13 13:18
  • by Christian Koessl