/
form_get_summary ()

form_get_summary ()

Function prototype

form_get_summary ( session, form {,with_questions}{, as_closed} )

API Version

All

Generates a summary of a FORM with the list of questions and the answered values, plus the form name and the form data give it in the XML returned.

The language of the descriptions is in the active language of the session passed in the input parameter

The questions included in the FORM depend on the state of the FORM:

  • When the FORM is in OPEN state, then return all the questions that are always visible (not hidden) and  not marked as 'HIDDEN ON OPEN' (see HIDDEN property of ITEM TEMPLATE OBJECT)

  • When the FORM is in CLOSED state, then return all the questions that are always visible (not hidden) and  not marked as 'HIDDEN ON CLOSE' (see HIDDEN property of ITEM TEMPLATE OBJECT)

Input

parameters:

  • session: is the session id obtained in the session_init call

  • form: is the ID of the form obtained by the URL or by the call form_list()

  • with_questions: true/false to obtain all options of all questions. by default "false"

  • as_closed: true/false (default = false) If true, the XML returned by form_get_summary() will be as the FORM was closed (independently of the real state)

Output

parameters:

  • result: XML with the information about the FORM:

  • form: is an XML with a all details of the form. The XML form is more similar than the template XML. For more information see the template_import()

    • ref: is the reference to the id of the form and its source.

    • data

      • name: is the name of the form in the language of the active session

      • description: is the name of the form in the language of the active session

      • status:

        • CLOSED

        • OPEN

        • CANCELLED. A FORM is considered to be cancelled if it was open when the parent TASK was cancelled . Introduced in API Version 2.7.19

      • content_type: type of object (FORM, REPORT, DOCUMENT, PHOTO, DEVICE)

      • prev/next: are the reference for the next and previous form in the composed task. The status value of the form is showed too.

      • admission: ref of form's admission(for parent_type TASK is always present, for EVENT is present if admission is set in EVENT).

      • parent_type: can be either TASK, LIBRARY_TASK or EVENT

      • parent_id: the task or event identifier

      • parent_status: the status of the task or event

      • parent_name: the name/description of the task or event

      • parent_locked: to indicate whether the parent TASK is locked or not

      • editable: Indicates whether the contents (questions) of this FORM can be edited by the active USER

      • nav_mode: Navigation mode. Suggestion about how to present the question contained in this FORM. See NAVIGATION_MODE property of ITEM TEMPLATE OBJECT. Introduced in API version 2.7.21

      • questions: list of ITEMS in the FORM

        • question_id: a question reference of the type {form_id/}question_id

        • item_code: ITEM CODE of the question

        • question_template_id: ID of the ITEM TEMPLATE OBJECT. Introduced in API version 2.7.15

        • description: the text of the question

        • description_onedit: the text of the question that must be shown when editing the FORM. If empty, "description" will be used

        • literal_format: rules to format the text of the question. See FORM TEMPLATE OBJECT

        • value_format: rules to format the value (answer) of the question. See FORM TEMPLATE OBJECT

        • arrangement: rules to determine the position of the answer respect to the text of the question (below, beside...). See FORM TEMPLATE OBJECT

        • barcode_scan: Indicates whether the value of this question is allowed to be entered by scanning a barcode (see BARCODE_SCAN PROPERTY). Introduced in API version 2.7.15

        • order: determines the position of the question into the FORM. If a question belongs to an array, then all question of the same array have the same "order" value

        • array_ref: Only for ARRAYS. Indicates the reference of the ARRAY to which question belongs. This value is the reference of the ITEM of type "ARRAY" that contains the question. Introduced in API version 2.7.24

        • row: only for ARRAYS. Determines the row to into an ARRAY to which this question belongs

        • column: only for ARRAYS. Determines the column to into an ARRAY to which this question belongs

        • empty_row: (0 / 1) Only in ARRAYS. indicates whether the question belongs to an empty row of the ARRAY

        • data_code: the data_code of the question

        • question_name: is the name of the question in the session language

        • value: is the answer of the user

        • default_value: indicates the default value that will be assigned to the question if no answer is provided. Introduced in API Version 2.7.26

        • formula: The formula assigned to the question. This property is only included if a FORM FORMULAS has been assigned to the Question and the role of the active SESSION is "SERVICE". Introduced in API version 2.7.26

        • error_msg: Error message (if any) that occurred when an invalid value has been tried to be assigned to this question (e.g. as a result of the calculation of a FORMULA that generates an error). This property is only included when the role of the active SESSION is "SERVICE". Introduced in API version 2.7.29

        • type: is the type of the question, can be NUMERICAL, BOOLEAN, TEXT, TEXT_AREA, STATIC_TEXT, SELECT, DATE, FORMULA, HORIZONTAL_CHECK, VERTICAL_CHECK, VERTICAL_RADIO, DROP_DOWN, HORIZONTAL_RADIO, ARRAY_CHECK, CODE, FILE, DEVICE, FORM

        • is_section_title: Only in STATIC_TEXT question types. Indicates that the STATIC TEXT ITEM should be considered as the caption of a section (and all the ITEMS following this one are considered to belong to the section until another section title appears)

        • section_title: This property has value in the following situations:

          • When the question is placed after a STATIC_TEXT marked as 'section_title' (i.e. is_section_title = true). The value will be the description of the closest section title ITEM.

          • When the question belongs to an embedded FORM. Embedded FORMs are represented by a special ITEM of type "FORM" which is included in the FORM referenced by the parameter form. The value of section_title will be the description of the ITEM of type "FORM"

        • device_type: when the 'type' of the question is DEVICE, then it is also included the 'device_type' indicating the DEVICE TYPE CODE.

        • mandatory: Y for yes N for no

        • tabulation: is the tabulation of the question

        • min_value: (only if the question type is NUMERICAL). Minimum value accepted for the answer of the question

        • max_value: (only if the question type is NUMERICAL). Maximum value accepted for the answer of the question

        • value_increment (only when question type is VAS): defines the minimum increment that can be applied to the value

        • min_length: (only if it has a value) the minimum character length admitted

        • max_length: (only if it has a value) the maximum character length admitted 

        • num_dec: number of decimals

        • formula: if the result is a formula

        • multimedia_info: only in MULTIMEDIA questions. Returns the information of the LIBRARY RESOURCE OBJECT that contains the multimedia resource associated to the question (audio or video)

        • image_list: Contains a list of images that will be used to display the question instead of the question description (or along with it). This node will only be included when parameter with_options is true and the question type is one of the following: BOOLEAN, VERTICAL_RADIO, HORIZONTAL_RADIO, VERTICAL_CHECK, HORIZONTAL_CHECK, CODE, VAS. For each image in the list, the information included is:

          • image_info: A JSON string containing the information about the image 

        • file_info: (only in ITEMS of type "FILE" and "DEVICE". Provides extended information about the file uploaded. Introduced in API version 2.7.10

          • filename: Name of the file (includes name and file extension)

          • mime_type: MIME type of the file file. See MIME Types & File extensions for more information

          • url: A relative URL to download the file bytes via HTML5 Streaming

        • options: Contains the list of options that the user can select as a response. This node will only be included when parameter with_options is true and the question type is one of the following: BOOLEAN, VERTICAL_RADIO, HORIZONTAL_RADIO, VERTICAL_CHECK, HORIZONTAL_CHECK, CODE, VA

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

          • value: is the value of the option

          • is_exclusive: (true/false) Only in ITEMS of type CHECKBOX. When true, it means that this option is selected, all the rest of options will be ignored (as if it was a radio button). Introduced in API version 2.7.21

          • option_id: is the ID of the option ( for RADIO, CHECK, COMBO)

          • image_info: if the option has an associated image (a LIBRARY RESOURCE), then this node will contain a JSON description of the resource. See LIBRARY RESOURCE INFO (JSON)

          • region_map: used when the question has an associated image. If this node has a value, it consists of a polygon defined on an image to let the user select this option by clicking on the specified zone of the image

          • value: is the value of the option. If  there are multiple options. Is the description of the option selected.

        • countdown: (Only in ITEMs of type "COUNTDOWN"). Returns the information to display a countdown control. Introduced in API version 2.7.16

          • start_time: Datetime when the regressive count starts

          • end_time: Datetime when the regressive count ends

          • duration: Total time in seconds between start_time and end_time

          • remaining: Time remaining (in seconds) from the active user time (in his timezone) until end_time

          • auto_refresh: A value in seconds that indicates the client application if a refresh of the FORM should be done. This is typically some ITEMS of the FORM are hidden or displayed while the countdown is running. This way the client application interface can reflect the changes in the ITEMS of the FORM while the countdown is running. Introduced in API version 2.7.20

        • pkpass: (Only in ITEMs of type "QR"). An URL to download a Passbook Card file. Introduced in API version 2.7.17

        • display_mode: Suggestion about how to present the question. The display mode depends on the configuration of the NAVIGATION_MODE property of the parent object (see ITEM TEMPLATE OBJECT). Introduced in API version 2.7.19. This property can have the following values:

          • 0: Default mode. The question should be presented in the default mode of the client application, which normally consists in presenting the question in a list along with the rest of questions of the same FORM

          • 1: Popup dialog: The question should be presented in a popup dialog

        • auto_open: (true/false) This property is only returned in ITEMS of type TRAINER or ITEMS of type FORM configured to be displayed as a popup dialog (navigation mode = STEP BY STEP). When "auto_open = true", the client application should show automatically the contents of the embedded FORM. Otherwise, the user should perform some action (normally a mouse click) to open the contents of the embedded FORM. Introduced in API version 2.7.21

        • display_time: Time (in seconds) that the ITEM should be displayed in the client application. Introduced in API Version 2.7.20.

          • In ITEMS of type COUNTDOWN, a value different than 0 means that the ITEM should be displayed until the end time of the countdown is reached.

          • In ITEMS of type MULTIMEDIA, a negative value means that the ITEM should be displayed until the reproduction ends. A positive value indicates a specific number of seconds

        • editable: (true/false) Indicates whether the active session can modify the value of the question.

        • inner_questions: Only in questions of type "FORM" with property nav_mode = 1. Contains a list of the questions in the embedded FORM. See EMBEDDED FORMS section below

          • question: information about the question in the embedded FORM

            • ref: reference of the question

            • description: Description of the question

    • attachments: List of files attached to this FORM. See ITEM TYPE: "ATTACHMENT" for more information. Each attachment consists of the following information. Introduced in API Version 2.7.9

      • attachment: information about each attachment 

        • filename: Name of the attachment (includes name and file extension)

        • mime_type: MIME type of the attached file. See MIME Types & File extensions for more information

        • url: A relative URL to download the file bytes via HTML5 Streaming

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

form_get_summary( “LCAAAAAAAAAAA”, “1234”);

Response

sample:

 

<?xml version="1.0" encoding="utf-8" standalone="yes"?> <result> <form> <ref>1234</ref> <data> <status>CLOSED</status> <template>187</template> <progress> </progress> <name>PATIENT START</name> <description>PATIENT START</description> <content_type>FORM</content_type> <admission>1231212</admission> <parent_type>TASK</parent_type> <parent_id>466364</parent_id> <parent_status>DONE</parent_status> <parent_name>Patient start</parent_name> <parent_locked>false</parent_locked> <editable>true</editable> <questions> <question> <question_id>1</question_id> <item_code></item_code> <order>1</order> <row></row> <column></column> <mandatory>N</mandatory> <exclusive>N</exclusive> <tabulation>0</tabulation> <description>PAIN DESCRIPTION</description> <description_onedit>PAIN DESCRIPTION</description_onedit> <literal_format>{"text_format":"plain", "text-align":"left"}</literal_format> <value_format>{"text_format":"plain","text-align":"centre"}</value_format> <arrangement></arrangement> <constraint></constraint> <barcode_scan>0</barcode_scan> <data_code></data_code> <type>STATIC_TEXT</type> <is_section_title>false</is_section_title> <value></value> <nav_mode>0</nav_mode> <display_time>5</display_time> </question> <question> <question_id>2</question_id> <order>2</order> <row></row> <column></column> <num_dec></num_dec> <min_length>1</min_length> <max_length>32</max_length> <unity>(MM/DD/YYYY)</unity> <value_description>11/22/2015</value_description> <mandatory>N</mandatory> <exclusive>N</exclusive> <tabulation>0</tabulation> <description>Please indicate the day when patient will start sending information.</description> <description_onedit>Expected start date:</description_onedit> <literal_format>{"text_format":"plain", "text-align":"left"}</literal_format> <value_format>{"text_format":"plain","text-align":"centre"}</value_format> <arrangement>{"answer_position":"below"}</arrangement> <constraint></constraint> <barcode_scan>0</barcode_scan> <data_code>START</data_code> <type>DATE</type> <section_title>false</section_title> <value>11/22/2015</value> <nav_mode>0</nav_mode> </question> <question> <question_id>3</question_id> <order>3</order> <row></row> <column></column> <num_dec></num_dec> <unity></unity> <mandatory>N</mandatory> <exclusive>N</exclusive> <tabulation>0</tabulation> <description>Please indicate the day when patient will start sending information.</description> <description_onedit>Expected start date:</description_onedit> <literal_format>{"text_format":"plain", "text-align":"left"}</literal_format> <value_format>{"text_format":"plain","text-align":"centre"}</value_format> <arrangement>{"answer_position":"below"}</arrangement> <constraint></constraint> <barcode_scan>0</barcode_scan> <data_code>PAIN_ZONE</data_code> <type>VERTICAL_RADIO</type> <multimedia_info>{"resource_ref":12312,"description":"Relaxing instructions","mimeType":"audio/mp3","code":"RELAXING","scope":"PROGRAM"}</multimedia_info> <image_list> <image> <image_info>{"resource_ref":12312,"description":"Human body","mimeType":"jpg","code":"HUMAN_BODY","scope":"PROGRAM"}</image_info> </image> </image_list> <options> <option> <description>Shoulder</description> <option_id>1</option_id> <value>sh</value> <image_info></image_info> <region_map>{"resource_ref":12312, "region":"12,43,124,542,425,232"}</region_map> </option> <option> <description>Shoulder</description> <option_id>2</option_id> <value>elb</value> <image_info>{"resource_ref":12312,"description":"Elbow","mimeType":"jpg","code":"HUMAN_BODY_ELBOW","scope":"PROGRAM"}</image_info> <region_map>{"resource_ref":12312, "region":"54,23,56,45,123,542"}</region_map> </option> </options> <value>2</value> <value_description>Elbow</value_description> <image_info>{"resource_ref":12312,"description":"Elbow","mimeType":"jpg","code":"HUMAN_BODY_ELBOW","scope":"PROGRAM"}</image_info> <nav_mode>0</nav_mode> </question> <question> <question_id>4</question_id> <min_value></min_value> <max_value></max_value> <num_dec></num_dec> <order>4</order> <row></row> <column></column> <mandatory>N</mandatory> <exclusive>N</exclusive> <tabulation>0</tabulation> <description>Please verify the date, and if is not correct correct the date selecting the first question.</description> <data_code>CONFIRMATION</data_code> <type>VERTICAL_RADIO</type> <value_description>Yes</value_description> <value>Yes</value> <device_type>pedometer</device_type> <nav_mode>0</nav_mode> </question> </questions> </data> <attachments> <attachment> <filename>image1.jpg</filename> <mime_type>image/jpeg</mime_type> <url>Render.php?shared_key=9asdjha98daasdasa</url> </attachment> <attachment> <filename>image2.jpg</filename> <mime_type>image/jpeg</mime_type> <url>Render.php?shared_key=9khtfba4yda</url> </attachment> </attachments> </form> </result> <ErrorMsg></ErrorMsg> <ErrorCode></ErrorCode>

 

Notes:

 

Embedded FORMS

An ITEM of type "FORM" (ITEM TYPE: "FORM") can be used to insert a list of questions defined in a separate FORM. This strategy allows to create complex FORMs in a modular way avoiding the need of creating a single FORM with a large list of questions.

In API Version 2.7.19 it was introduced the property 'navigation mode' to for each question of a FORM, which is a recommendation to the client about how to display a question in the user interface.

Since API Version 2.7.20, in ITEMs of type "FORM" the navigation mode also affects the way in which form_get_summary() returns the list of questions. Consider the following example:

In this example, the parent FORM F1 contains 5 questions, though 2 of them belong to an embedded FORM F2.

When the ITEM of type FORM has navigation mode = 0 (show embedded), the item of type "FORM" is not included in the response of form_get_summary(), and the questions in the embedded FORM referenced by ITEM Q2 are inserted in the response as if they belonged directly to the parent FORM. In this situation the response of form_get_summary() would be:

 

<?xml version="1.0" encoding="utf-8" standalone="yes"?> <result> <form> <ref>F1</ref> <data> <status>CLOSED</status> ... <questions> <question> <question_id>Q1</question_id> <type>TEXT</type> ... </question> <question> <question_id>Q2.1</question_id> <type>TEXT</type> ... </question> <question> <question_id>Q2.2</question_id> <type>CHECKBOX</type> ... </question> <question> <question_id>Q3</question_id> <type>NUMBER</type> ... </question> </questions> </data> </form> </result>

 

On the other side, when the ITEM of type FORM has navigation mode = 1 (show in popup dialog), the ITEM of type "FORM" is included in the response, but the questions in the corresponding embedded FORM are not inserted as regular questions of F1. Instead they are informed as inner questions of the ITEM Q2:

 

<?xml version="1.0" encoding="utf-8" standalone="yes"?> <result> <form> <ref>F1</ref> <data> <status>CLOSED</status> ... <questions> <question> <question_id>Q1</question_id> <type>TEXT</type> ... </question> <question> <question_id>Q2</question_id> <type>FORM</type> <nav_mode>1</nav_mode> <inner_questions> <question> <question_id>Q2.1</question_id> </question> <question> <question_id>Q2.2</question_id> ... </question> <inner_questions> </question> <question> <question_id>Q3</question_id> <type>NUMBER</type> ... </question> </questions> </data> </form> </result>

 

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 create request the 'form_id' indicated

FORM.NOT_FOUND

The FORM reference provided in parameter form_id does not correspond to an existing FORM

 

Related content