user_search ()
Function prototype | user_search (session, search_str , [max_res = 1000], [offset = 1]) |
---|---|
API Version | 2.7.25 and higher |
SOAP |
Description
Returns a list of professional USERs that match the search criteria
If the instance is configured to connect to an external HIS (interoperability) and the HIS supports the search of USERS, the results returned by the function will contain the USERS found in the internal DB in addition to the ones found in the external HIS
If a simple string is provided in the search_str parameter, it will we used to find USERS who:
The name/surname matches the search string
Have a communication channel (eMail, Phone) that matches the search string
Have any IDENTIFIER that matches the search string
Input parameters: |
|
Output parameters: |
|
Request example
user_search ( “LCAAAAAAAAAAAA”, "john")
Response
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<result>
<users>
<items>3</items>
<user>
<ref>14872</ref>
<pictures>
<insignia>
<ref>P1860000</ref>
</insignia>
</pictures>
<data>
<nickname>JAMES S</nickname>
<full_name>James Swift</full_name>
<bdate>1968-03-12</bdate>
<age>54</age>
<gender>M</gender>
</data>
</user>
<user>…</user>
…
</users>
</result>
<ErrorMsg></ErrorMsg>
<ErrorCode></ErrorCode>
Return Error codes
ERROR CODE |
|
---|---|
INVALID_TOKEN | The session token provided is not valid |
INSUFFICIENT_PRIVILEGES | The session user does not have the necessary privileges to … |
JSON search expression format
It is possible to provide a JSON formatted string in the parameter search_str to customize the search of USERS. The structure of the JSON string can contain:
identifier: Search by IDENTIFIER: allows to search CASES that have an specific IDENTIFIER in their contact data with the requested value. To use this search type it is necessary to provide 2 values:
code: name of the IDENTIFIER (e.g. "NAT_ZH"). If it is empty, the search will be done for any IDENTIFIER of the CASE
value: Value searched (the value that the IDENTIFIER of the CASE should have)
program: This filter only takes effect when searching an IDENTIFIER OBJECT that is a SUBSCRIPTION IDENTIFIER. If provided, only the IDENTIFIERS assigned to CASES in SUBSCRIPTIONs of that PROGRAM will be considered
team:This filter only takes effect when searching an IDENTIFIER OBJECT that is a SUBSCRIPTION IDENTIFIER or a TEAM IDENTIFIER.
If the program filter is also provided, only the IDENTIFIERS assigned to CASES in SUBSCRIPTIONs of that TEAM will be considered
Otherwise, only the TEAM IDENTIFIERS related with the selected TEAM will be considered
username: Search by username
If more than one search criteria is provided, the funcion will return the USERS that match simultaneously all of them (logical AND)
The following example requests to search any patient with
An IDENTIFIER called "NAT_ES" with value "72266626D"
AND username = "kx822"
{
"identifier" : {
"code": "NAT_ES",
"value": "72266626D"
},
"username" : "kx822"
}