session_password_reset()
Function prototype | session_password_reset(id, [option], [message], [lang], [country_code] ) |
---|---|
API Version | All |
SOAP, REST (from API Version 2.7.32) |
Description
Allows to reset the password of an exiting account
This function should be called in a 2-step process:
In the first call, leave the option parameter empty to obtain a list of the different options to request the password reset. Each option is a communication channel that can be used to send the instructions to reset the password.
In the second call, fill the option parameter with one of the options retrieved from the first call.
The list of available options depends on the following factors:
The communication channels associated to the account for which the password needs to be reseted. For example, if the account has an email address and a phone number, then those communication channels can be used to send the instructions to reset the password.
The available communication channels configured in the platform. For example, if there is no provider configured to send email notifications, the the option to reset the password by email will be available (even if the account has a valid email address)
Input parameters: |
|
Output parameters: |
|
Request examples
session_password_reset( "john.doe@linkcare.es");
session_password_reset( "john.doe@linkcare.es", ”MAIL|1”);
In the first example, the option parameter is not provided, and the function will return the list of communication channels available to request the password reset.
In the second example, the option parameter has value “MAIL|1”, and the execution will trigger the reset password process by sending a notification with instructions by the communication channel identified by “MAIL|1”
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.
The following response corresponds to the first request example explained before, where the option parameter is null to request the list of communication channels available:
Return Error codes
ERROR CODE |
|
---|---|
USER.NOT_FOUND | The account identified by id was not found |