Function prototype | case_get_program_list (session, case = NULL, filter = NULL}) |
---|
API Version | 2.7.13 and higher |
---|
Supported interfaces | SOAP, REST (Since API Version 2.7.31) |
---|
Description
Return a list of programs with at least one ADMISSION of the CASE where the patient may have some patient tasks, patient message, optional tasks or optional messages, or medical records
This operation is restricted by privileges granted to the session's user. It is only allowed if:
The CASE corresponds to the same session's user
The session's user is a PROFESSIONAL
The session's user is an ASSOCIATE of the CASE and the permission #PERMISSIONS.TASK_DELEGATE is granted for browsing
Input parameters: | session: a token obtained by calling session_init () case: a case reference. If no case is specified, the current session user will be assumed filter: JSON structure with optional filters. See Optional filters for more information
|
Output parameters: | result/program_list: root node of the response health_profile: Contains a list of the Health Profile records of the patient. This is only returned if the active user has enough privileges to view the Health Profile of the patient. Form more detailed information about the Health Profile records, see case_get_health_profile (). Introduced in API version 2.7.25 total: summary of open and closed TASKs and EVENTs tasks: summary about the TASKs of the CASE. Note that when the active user is the CASE, this count only includes TASKS scheduled up to the next hour (i.e. it doesn’t count TASKS scheduled past 1 hour in the future). TASKs that are “CANCELED”, “EXPIRED” or “PAUSED” are not included in the count events: summary about the EVENTs of the CASE open: total number of EVENTs that the CASE has not completed yet closed: total number of EVENTs that the CASE has completed flagged: Number of EVENTs with a flag set (PRIORITY <> 0). Introduced in API version 2.7.15
alerts: number of unread alerts. Introduced in API version 2.7.24 educational: Number of available EDUCATIONAL MATERIALS. Introduced in API version 2.7.25 appointments: Number of APPOINTMENTS planned for today and other future dates. Introduced in API version 2.7.32 today: Number of APPOINTMENTS planned for today (in the local timezone of the active SESSION). This number will not include any APPOINTMENT planned before one hour in the past. week: Number of APPOINTMENTS planned of the next week (not including the APPOINTMENTS planned for today)
programs/program: Node with information about the PROGRAM ref: reference to the PROGRAM name: Name of the program description: Description of the program (translated to the current session language) image_info: Picture associated to the PROGRAM expressed as a LIBRARY RESOURCE INFO (JSON) tasks: summary about the TASKs of the PATIENT open: number of TASKs that the PATIENT has not completed yet in this PROGRAM closed: number of TASKs that the PATIENT has completed in this PROGRAM has_optional: (true/false) Indicates whether the PATIENT can add optional TASKs to this PROGRAM or not
events: summary about the EVENTs of the PATIENT open: number of EVENTs that the PATIENT has not completed yet in this PROGRAM closed: number of EVENTs that the PATIENT has completed in this PROGRAM flagged: Number of EVENTs with a flag set (PRIORITY <> 0). Introduced in API version 2.7.15 has_optional: (true/false) Indicates whether the PATIENT can create new EVENTs in this PROGRAM or not
educational: number of EDUCATIONAL MATERIAS in this PROGRAM. Introduced in API version 2.7.25 teams: List of TEAM OWNERS of the subscriptions where the patient has an ADMISSION. Introduced in API Version 2.7.14 medical_records: (true/false) Indicates whether the PATIENT has medical records generated from this PROGRAM or not
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: the code of the error (if any)
|
Request example
case_get_program_list ( “LCAAAAAAAAAAAA”, 32131, "{'status': 'pending'}")
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
| |
---|
INVALID_TOKEN | The session token provided is not valid |
INSUFFICIENT_PRIVILEGES | The session user does not have the necessary privileges to request the list of favorite items of the CASE |
CASE.NOT_FOUND | The CASE reference provided does not correspond to an existing CASE |
Optional filters
This function accepts a filter parameter which is expressed in JSON format. This filter allows to specify which PROGRAMs should be returned.
The possible filter fields are:
status: (pending/active/all). Default value = "all". Depending on the value, the list of PROGRAMs will include:
"pending": only programs with pending tasks or events
"active": pending programs plus active admissions
"all": all enrolled, active or discharged programs
program: comma separated string with PROGRAM IDs. If provided, only the TASKs and EVENTs of the selected PROGRAMs will be counted
team: comma separated string with TEAM IDs. If provided, only the TASKs and EVENTs in SUBSCRIPTIONs owned by the indicated TEAMs will be counted
medical_records: (true/false). Default value = "true". If true, the PROGRAMs where the PATIENT has a medical record will be returned, independently of the status filter
If any filter is not specified, the default value will be applied.
Example
FILTER
{
"status": "pending",
"medical_records" : "true"
}