function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
EIE50EIE50 

End a user session in salesforce using salesforce API, is there any api call available?

Hi,

 

We are building an integration between an external system to salesforce. For this we have build a web service to do the required functionality, and the external system is accessing the enterprise wsdl and the web service wsdl. Whenever a login request is sent to salesforce, upon succesful login a session id is generated and is maintained till the required action is performed in salesforce. How can i end this session from the external system? Is there any api call or anything to do this in salesforce?

 

Thanks.

Best Answer chosen by Admin (Salesforce Developers) 
VPrakashVPrakash

I think you can use the logout webserivces call, See below 

 

http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_calls_logout.htm

All Answers

VPrakashVPrakash

I think you can use the logout webserivces call, See below 

 

http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_calls_logout.htm

This was selected as the best answer
EIE50EIE50

Thank you for the help.