/
task_get ()

task_get ()

Function prototype

task_get (session, task, context)

API Version

All

Supported interfaces

SOAP, REST (Since API Version 2.7.31)

API Version

Changes respect to previous version

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:

  • session:is the session token obtained in the session_init() call

  • task: a reference to a task object

  • context: ADMI/USER/CASE, by default “”. This parameter is needed to calculate the next/prev tasks (in the order of the task_list)

Output

parameters:

  • result: an XML representation of the object:

    • ref: task reference

    • refs

      • activity: is the activity_id of the original task template

      • task_code: is the code of the original task

    • description: is the description in the session language of the task

    • name: is the name of the task

    • event: This information is added when the TASK is embedded in an EVENT

      • ref: Reference to the EVENT in which this TASK is embedded

      • name: Name of the EVENT (included in API version 2.7.9.1)

    • modified:

      • date: is the date in YYYY-MM-DD format of the last update of the task. Expressed in the local timezone of the active SESSION.

      • hour: is the time in HH:MM:SS format of the last update of the task. Expressed in the local timezone of the active SESSION.

      • user:

        • id: user_id of the professional

        • nickname: user nickname

        • name_complete: user name complete

    • assignments/assignment: is the list of roles of the task with the users that can be modify the task

      • team:

        • ref: id of assigned team

        • name: name of assigned team

      • role:

        • ref: the role

        • name: the role description in the session language

      • user:

        • ref: user_id of the professional

        • nickname: user nickname

        • name: user name complete

    • forms/form: List of FORMS included in the TASK

      • ref: Reference of the FORM

      • code: FORM CODE. Introduced in API version 2.7.20

      • description: Description of the FORM

    • type: type of the task, It should be: CASE,CALL,VIDEO,TELE,CARE,MSG,SUSPEND,RESUME,ENROLL,DISCHARGE,JOIN, EDU

    • educational: (true/false) The value is true if this TASK is considered an EDUCATIONAL TASK. Introduced in API Version 2.7.25

    • class: It can be: PRO_TASK or SYS_TASK

    • category: Is the category of the task

      • id: the identification of the task category

      • description: the description in the session language

    • date: is the date in YYYY-MM-DD format of the task

    • hour: is the time in HH:MM:SS format of the task ( if the task is PENDING, is the planning date-hour. If the task is DONE, is the  last modify date-hour)

    • unscheduled: (true/false) Indicates whether the TASK has not been defined for a specific time of the day (can be done at any time of the day). When this property is true, the hour will be ignored. Introduced in API Version 2.7.25

    • duration: is the prevision of the duration to doing the task

    • follow_report: Y/N is the check that marks if the task is included in the followup report

    • status: DONE/PENDING

    • recursive: insert same task after closing it in {DAY/WEEK/BEWEEK/MONTH/YEAR} after close task

    • admission: information about the ADMISSION to which the TASK belongs

      • ref: the reference of the admission

    • program: basic information about the PROGRAM to which the ADMISSION of the TASK belongs. This information was added in API 2.7.6

      • 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)

    • case: information about the CASE of the ADMISSION

      • ref: the reference to the case of the admission

    • task_code_tasks: list of the tasks which have the same task_code in admission (in same program if task_code starts with $):

  1. As described the pending or finished tasks will be displayed, NO selected and NO derived from the selected task will be displayed.

    1. Simple tasks (which are not within a compound or composite device task) with the same TASK_CODE

    2. The composite jobs "COM" or "DIS" containing some task with the selected TASK_CODE

  •  

    • permissions

      • edit: flag that indicates if task can be edited by the active user (it must have one of the following roles in the SUBSCRIPTION: "CASE MANAGER", "PROGRAM ADMINISTRATOR", "SERVICE")

      • delete: flag that indicates if task can be deleted by the active user (it must have one of the following roles in the SUBSCRIPTION: "CASE MANAGER", "PROGRAM ADMINISTRATOR", "SERVICE")

      • allow_add_activiy: (true/false) Indicates whether the TASK admits the possibility of inserting ACTIVITIES. This property only makes sense if the TASK was generated from a WORKPLAN OBJECT). This property was introduced in API version 2.7.6

    • record:

      • ref: a reference to a record object if not null

    • locked: Indicates whether the TASK is 'locked' or not. A locked TASK cannot be answered by the user to whom it is assigned. Usually a TASK is locked when you don't want it to be completed until another condition happens (for example until a previous TASK has been completed). The 'locked' status of a TASK can be changed using a FORMULA LOCK_TASK(), or API function task_set().

  • ErrorMsg: If any error occurs, then this value contains a description of the error translated to the current language

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

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



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>



Related content