Difference between revisions of "REST API:LogoutAll"

From AgileApps Support Wiki
(Created page with "Logs out all the sessions of a user ;Method:GET ;URI:<tt>{{platformURL}}/rest/httpSessionManagement/logoutAll</tt> ;Response: :<syntaxhighlight lang="xml" enclose="div">{...")
 
 
(One intermediate revision by the same user not shown)
Line 14: Line 14:
}
}
</syntaxhighlight>
</syntaxhighlight>
:See also: [[REST API:Error Codes]]
;Fields:
:{| border="1" cellpadding="5" cellspacing="0"
! Name !! Type !! Description !! Additional Information
|-
| code || Integer || Response code indicating the result of the request || '''0''' indicates success; '''1''' indicates failure
|-
| description || String || Description of the response code ||
|}

Latest revision as of 15:14, 17 July 2024

Logs out all the sessions of a user

Method
GET
URI
https://{yourDomain}/networking/rest/httpSessionManagement/logoutAll
Response
<syntaxhighlight lang="xml" enclose="div">{
   "platform": {
       "message": {
           "code": "0",
           "description": "Success"
       }
   }

} </syntaxhighlight>

See also: REST API:Error Codes
Fields
Name Type Description Additional Information
code Integer Response code indicating the result of the request 0 indicates success; 1 indicates failure
description String Description of the response code