/
† instance_account_exists ()

† instance_account_exists ()

Definitively removed in API Version 2.8.1

DEPRECATED in API Version 2.7.19. Use account_exists () instead

Function prototype

instance_account_exists (account_ref, secret)

API Version

2.5.25 until 2.7.18

 

Checks if the 'account_ref' provided is a valid login identifier (can be used to perform a session_init())

For security reasons, only authorised users who know the "secret" can call this function. The secret string is delivered by Linkcare only to authorised partners

Input

parameters:

  • account_ref: the login identifier that will be verified

  • secret: only authorised users who know the "secret" string can call this function.

Output

parameters:

  • result: (true / false) indicates whether the account_ref provided is a valid login identifier

  • ErrorMsg: any fault in the call, either in the validation of input parameters, errors in the connection to the database or any other error, this parameter returns the error message produced

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

Request

sample:

instance_account_exists ( “kjsad9q734yhafsjk”, "loginid");

Response

sample:

 

<?xml version="1.0" encoding="utf-8" standalone="yes"?> <result>true</result> <ErrorMsg></ErrorMsg> <ErrorCode></ErrorCode>

 

Notes:

 

 

Related content