/
session_init ()

session_init ()

Function prototype

session_init (user, password, [IP], [host], [language], [APIVersion], [norewrite], [current_date], [calendar], [device], [extra])

API Version

ALL

Supported interfaces

SOAP, REST

Description

Initiates a session in the API and returns a session token that must be used in subsequent calls to other API functions.

Single Sign On capability

Since API version 2.7.25 this function also supports a simple Single Sign On mechanism that does not require connection to external authentication systems. For this to work, the password provided must be generated following the rules described in section Single Sign On Mechanism.

Post Sign-In actions

Since API version 2.7.28, when a patient signs-in for the first time, the system will enroll him in a default PROGRAM if the platform is configured to do so. See the $GLOBALS['CASE_DEFAULT_TEAM'] configuration parameter in WEB SERVICES CONFIGURATION form more details.

Input parameters

  • user: One of the following:

    • username

    • email

    • phone number: When using a phone number it is necessary to include the country prefix unless the country_code property is included in the extra parameter (see below)

    • Any unique IDENTIFIER of the user.

    • An employee reference if the user is logging with an internal ID of a particular company. An employee reference is internally stored as a TEAM IDENTIFIER, because it may happen that different companies share equal employee references (i.e. the employee reference is not a globally unique value that identifies a person). This user value can be provided in 2 ways:

      • As a plain employee reference (e.g. 12726): This is only allowed when the company property is included in the extra parameter (see below). Otherwise it would not be possible to determine the identity of the user since the employee reference may be equal in several companies.

      • As a concatenation of the employee reference and the company ID with the format employee_ref@company_id (e.g. 12726@LINKCARE). In this case it is not necessary to indicate the company property is included in the extra parameter because the company reference can be inferred from the user value.

  • password: The password of the user. Alternatively it is possible to use a password generated by a Single Sign On mechanism as described in section Single Sign On Mechanism.

  • IP: IP of the caller (the one who invokes this web service). If IP="", the system will try to determine automatically the remote connection IP

  • host: Indicates the platform where the client application is running. Possible values are:

    • "web": The client application is a web browser. This is the default value if nothing is specified

    • "mobile_app": The client application is a mobile app

    • "desktop_app": The client application is a desktop application

  • language: Preferred language code in 2-letter ISO format used (e.g. "en")

  • APIVersion: API version compatibility mode. This value is used to use API functions as they were defined in the specified version. Note that indicating an older API version must be understood as working with the current version in a 'compatible mode'. The API works always with the last version and all functionalities are available, but you can continue invoking API functions as they were defined in the old version.
    If no value provided, a default compatibility mode will be assigned depending on the communication mode used to invoke the API:

    • When using the SOAP interface, the default API version is 0.0.0

    • When using the REST interface, the default API version is 2.7.25, since this is the first version where the REST interface was introduced

  • norewrite: If is set than don't rewrite previous session for the same user

  • current_date: This parameter is used to calculate the current timezone of the user. It is possible to indicate one of the following values:

    • (empty): Assume that the user is in the same timezone than the default system timezone

    • Current local datetime with format “YYYY-MM-DD hh:mm:ss”. The timezone assigned to the user will be an integer value calculated as the difference of the datetime provided and the UTC time. This option is not optimal since it is not possible to take into account the Daylight Saving Times when the system needs to calculate any date related to the user.

    • Regional timezone expression (e.g. “Europe/Madrid”). This option is available since API Version 2.7.32

  • calendar: Not used.

  • device: An unique and immutable ID for the device

  • extra: Optional JSON string with information about the client application and Operative System:

    • ws_endpoint: (optional) endpoint that indicates to WS where it is located

    • shared_key:  (optional) an encrypted string that contains information about additional actions that should be executed after a successful session init (see SHARED KEY OBJECT).

    • push_token: (optional) a token that identifies the client to send Push Notifications.

    • country_code: Optional 2-letter ISO country code indicating the country of the user. This is necessary if the user parameter is a phone number without the country prefix, because the API will try to deduce the prefix from the country code. Introduced in API Version 2.7.24

    • company: Used when the user can login using an employee reference of a particular company. The company value must be the TEAM CODE of the TEAM that represents the company. Introduced in API version 2.7.27

    • client: (optional) Information about the client OS and browser. Introduced in API version 2.7.15

      • os: name of the OS of the client: "Mac OS", "Windows", "Android", etc.

      • os_version: OS version number

      • browser: Name of the client web browser (if the client is a web browser): "Safari", "Chrome", "Firefox", etc.

      • browser_version: Version of the client web browser

      • app_name: Name of the Application (if the client is an APP)

Output Parameters

  • token: The session ID, needed to call protected method

  • user: The user ID (different from username), needed to call protected method

  • language: Default/current language for the user

  • role: Active ROLE of the user in this session

  • team: Reference of the active TEAM in this session

  • team_code: TEAM code of the active TEAM. Introduced in API version 2.7.20

  • name: The name of the user

  • image: id of image, to obtain image content user_get_image() must be called

  • professional: The PROFESSIONAL ID if the user is a professional (is member of a team), otherwise null (empty)

  • case: The CASE ID if the user is a professional (is member of a team), otherwise null (empty)

  • associate: The ASSOCIATE ID if the user is an associate of one or more CASEs, otherwise null (empty)

  • timezone: Time zone of the user (calculated based on the value of current_date)

  • change_password_secret: SHARED KEY OBJECT generated only when the current password has expired. It is a string that can be used to invoke session_password_set() as the old password. The secret has an expiration date of 5 minutes. Available in API versions 2.7.9.1 and higher.

  • ErrorMsg: If any error occurs, then this value contains a description of the error translated to the current language

  • ErrorCode: If any error occurs, then this value contains any of the standard ERROR CODES

Request examples

Login with username

session_init ( “john.doe”, "my_password", '187.13.45.63', null, 'EN', '2.7.27', false, null, null, null, null)

Login with email

session_init ( “john.doe@linkcareapp.com”, "my_password", '187.13.45.63', null, 'EN', '2.7.27', false, null, null, null, null)

Login with a phone number

Indicating the country prefix:

session_init ( “+34658987526”, "my_password", '187.13.45.63', null, 'EN', '2.7.27', false, null, null, null, null})

Without country prefix. Note that in this case the phone country prefix has not been included, so it is necessary to indicate the property country_code in the extra parameter so that the function can infer the country prefix:

session_init ( “658987526”, "my_password", '187.13.45.63', null, 'EN', '2.7.27', false, null, null, null, '{"country":"ES"}')

Login with a unique IDENTIFIER

In this example we are supposing that there exists a user with a unique IDENTIFIER OBJECT (e.g. the Spanish national ID “NAT_ES”) with value “4658755X”

session_init ( “4658755X", "my_password", '2.7.27', false, null, null, null, null)

Login with an employee reference

From API Version 2.7.20 it is possible to indicate an employee reference indicating the company implicitly in the user parameter:

session_init ( “568445@LINKCARE”, "my_password", '187.13.45.63', null, 'EN', '2.7.27', false, null, null, null, null)

From API Version 2.7.27 It is possible to indicate the employee ref without adding the company suffix. In this case it is necessary to explicitly indicate the property company in the extra parameter:

session_init ( “568445”, "my_password", '187.13.45.63', null, 'EN', '2.7.27', false, null, null, null, '{"company":"LINKCARE"}')

Response

The response format is XML when the function has been invoked via the SOAP API, and JSON when it has been invoked via the REST API

Return Error codes

ERROR CODE



ERROR CODE



TIMEZONE.INVALID

The current_date provided does not seem to be valid. It does not correspond to a valid timezone (using as reference the current date/time in the server)

ACCOUNT.ACTIVATION_PENDING

The account already exists and the activation is pending. In this case, the shared key necessary to validate the account is also returned in the response

USER.LOCKED

Too many attempts to login with an invalid password. The account has been temporarily locked

USER.ATTEMPTS_LEFT

The password provided is not valid but there is still one or more chances to try again

USER.ACCESS_DENIED

Currently it is not possible to create new accounts 'from scratch'. It is necessary that the account has been pre-created by adding a CASE , USER or ASSOCIATE.

If the account indicated does not exist, the function returns this error

PASSWORD.EXPIRED

The password has expired and it is necessary to change it

Single Sign On mechanism

Since API version 2.7.25 it is possible to use a password generated by an external system.

The password provided must have the following format:

sso:sso_password

Where:

  • "sso:" : fixed prefix that indicates that the authentication is using a single sign on mechanism

  • sso_password:  See the rules to Generate of a SSO Password

Example:

If the SSO password that correspond to the user 'doctor' is 324KKJ2342|1656578597|fea4d9bf5a0f1bf4e40195c9b556d27ab951c1e2de336165655bd84e5c0aeec1

Then the call to session_init()  should use the following parameters:

  • User: doctor

  • Password: sso:324KKJ2342|1656578597|fea4d9bf5a0f1bf4e40195c9b556d27ab951c1e2de336165655bd84e5c0aeec1

Related content