M4 API user logout

From Kolmisoft Wiki
(Redirected from M2 API user logout)
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Description

Logs out a user from the system

Usage

  • For Backwards-compatibility old name 'logout' is also usable. Call: /api/logout
  • Methods: POST, GET(if allowed, not recommended)



Parametres



Request

HTML POST: http://<SERVER_IP>/billing/api/user_logout?u=username&hash=f7c3bc1d808e04732adf679965ccc34ca7ae3441



Result

Success if the User is logged out from the system.

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <action>
   <name>logout</name>
   <status>ok</status>
 </action>

Error.This means that the wrong username and/or password and the user can't be authenticated and logged out from the system.

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
 <action>
   <name>logout</name>
   <status>failed</status>
 </action>



See also