seamless_login
Overview
Verifies that a session is authenticated.
Available APIs
- SOAP
- REST
Definition
seamless_login(session)
Parameters
Name | Type | Description |
---|---|---|
session | String | Session ID returned by a previous login call. |
Result
Name | Type | Description |
---|---|---|
result | Integer | Returns 1 if the session is authenticated. Otherwise 0 will be returned. |
Change Log
Version | Change | |
---|---|---|
Considerations
If you are attempting to log a user into SugarCRM seamlessly, you can do this by passing the validated session_id in the url.
An example is shown below:
http://{site_url}/index.php?module=Home&action=index&MSID={session_id}
Examples
PHP
$seamless_login_parameters = array(
//Session id
"session" => $session_id,
);