task_get ()
Function prototype | task_get (session, task, context) |
---|---|
API Version | All |
SOAP, REST (Since API Version 2.7.31) |
API Version | Changes respect to previous version |
---|---|
2.7.25 | Calculation of previous and next TASKs have been removed. See Changes in version 2.7.25 for more details |
IMPORTANT: Remember to call session_init() indicating the appropriate API Version |
Description
Returns all information about a TASK OBJECT.
Required permissions: The operation is only allowed if the active user:
When the active USER is the CASE:
The TASK belongs to an ADMISSION of that CASE
AND the TASK is not canceled
AND
The TASK is not a Medical Record
OR The TASK is a Medical Record and it has been configured as “Visible by the patient”
When the active USER is an ASSOCIATE of the CASE:
The TASK belongs to an ADMISSION of that CASE
AND The ASSOCIATE has permission to browse the TASKS of the CASE
AND the TASK is not canceled
AND
The TASK is not a Medical Record
OR The TASK is a Medical Record and it has been configured as “Visible by the patient”
When the active USER is a PROFESSIONAL
PROFESSIONALS are always allowed to request the data about any TASK
Otherwise an INSUFFICIENT_PRIVILEGES error will be returned.
Input parameters: |
|
Output parameters: |
|
Request example
task_get (“LCAAAAAAAAA”, 12221, "CASE")
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 | |
---|---|
INVALID_TOKEN | The session token provided is not valid |
INSUFFICIENT_PRIVILEGES | The session user does not have the necessary privileges to get information about the TASK |
TASK.NOT_FOUND | The TASK reference provided in parameter task does not correspond to an existing TASK |
TASK.NOT_AVAILABLE | The TASK reference provided in parameter task does not corresponds to a TASK that is no longer available (this generally means that the TASK status is cancelled, and the active user cannot access cancelled TASKs) |
Changes in version 2.7.25
Calculation of previous and next TASK were removed in version 2.7.25.
In previous versions there existed the nodes <prev> and <next> as follows:
refs
next or prev:
ref: the next or previous task reference
status: the status of the task, can be DONE/PENDING
<?xml version="1.0" encoding="UTF-8"?>
<result>
<task>
...
<refs>
...
<next>
<ref>40882</ref>
<status>DONE</status>
</next>
<prev>
<ref>40884</ref>
<status>DONE</status>
</prev>
</refs>