Difference between revisions of "MOR API user logout"
From Kolmisoft Wiki
Jump to navigationJump to search
(→Result) |
|||
Line 9: | Line 9: | ||
==Result== | ==Result== | ||
<xml encoding=" | <?xml version="1.0" encoding="utf-8" standalone="yes"?> | ||
<action> | <action> | ||
<name>logout</name> | <name>logout</name> | ||
<status>ok</status> | <status>ok</status> | ||
</action> | </action> | ||
Everything is ok. User is logged out from the system. | Everything is ok. User is logged out from the system. | ||
Line 20: | Line 20: | ||
---- | ---- | ||
<xml encoding=" | <?xml version="1.0" encoding="utf-8" standalone="yes"?> | ||
<action> | <action> | ||
<name>logout</name> | <name>logout</name> | ||
<status>failed</status> | <status>failed</status> | ||
</action> | </action> | ||
This means that wrong username and/or password and user can't be authenticated and logged out from the system. | This means that wrong username and/or password and user can't be authenticated and logged out from the system. |
Revision as of 02:49, 18 February 2008
Logs out user from MOR
Request
HTML POST: http://<SERVER_IP>/mor/api/logout?u=username&p=password
Result
<?xml version="1.0" encoding="utf-8" standalone="yes"?> <action> <name>logout</name> <status>ok</status> </action>
Everything is ok. User is logged out from the system.
<?xml version="1.0" encoding="utf-8" standalone="yes"?> <action> <name>logout</name> <status>failed</status> </action>
This means that wrong username and/or password and user can't be authenticated and logged out from the system.