cancel
Showing results for 
Search instead for 
Did you mean: 

Rest logout

sarkar92
Champ in-the-making
Champ in-the-making
we all know that we login into activiti using RESTFUL api
e.g —>
http://**********:9090/activiti-rest/service/login
and pass credential in body
{
  "userId": "kermit",
  "password": "kermit"
}

but is there a way that we can logout from activiti using RESTFUL api??
1 REPLY 1

trademak
Star Contributor
Star Contributor
Well, actually the REST API is stateless, so you don't need to logout.
The login REST service is only to validate your username and password. It doesn't create a session or something like that.

Best regards,