/
event_set ( session, event ) #API Version 0.0.0

event_set ( session, event ) #API Version 0.0.0

event_set (  session, event )

Is a function to set all information of the event. The tasks and the forms includes in the XML will be not saved. There are more functions to do this. See more in task_delete() and form_delete() functions

Input

parameters:

session: is the session id obtained in the session_init call

event: is an event XML object. See more on event_get() function

Output

parameters:

result: empty if all the process it’s ok

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

Request

sample:

event_set(“LC000000000000”, “

<?xml version="1.0" encoding="UTF-8"?>
<event>
   <ref>10017</ref>
   <type>
      <id>#EVENT:CARE</id>
      <description>EVENTO SANITARIO</description>
   </type>
   <status>OPEN</status>
   <follow_report>N</follow_report>
   <phone_poster>615235656</phone_poster>
   <priority>HIGH</priority>
   <comments>
      <open>comments for open the event</open>
      <close>comments for closet he event</close>
   </comments>
   <team>
      <ref>1</ref>
   </team>
   <call_type>IN/OUT/VOID</call_type>
   <posted_by>
      <role>
         <id>23</id>
         <description>Enfermero</description>
      </role>
      <id>5282</id>
      <nickname>Call C.</nickname>
      <name_complete>Call Center</name_complete>
      <date>2011-03-28 17:05:00</date>
      <minutes>10</minutes>
      <channel>
          <type>email</type>
      </channel>
   </posted_by>
   <assigned_to>
      <role>
         <id />
         <description />
      </role>
      <id>5282</id>
      <nickname>Call C.</nickname>
      <name_complete>Call Center</name_complete>
      <date>2011-03-28 17:05:00</date>
      <minutes />
      <channel>
          <type></type>
      </channel>
   </assigned_to>
   <issued_by>
      <type>OTHER</type>
      <person>
         <id />
         <nickname />
         <name_complete />
         <date>2011-03-28 17:05:00</date>
      </person>
   </issued_by>
   <admission>
      <ref>6903</ref>
      <data>
         <program>
            <id>2</id>
            <name>Rehabilitacio</name>
            <description>Rehabilitacio</description>
         </program>
         <protocol>
            <id>822</id>
            <name>EPOC - rehab-Enferm. Pulmonar Obstructiva Crónica</name>
            <description>EPOC - rehab-Enferm. Pulmonar Obstructiva Crónica</description>
         </protocol>
         <status>ACTIVE</status>
      </data>
   </admission>
   <case>
      <ref>4741</ref>
      <refs>
         <ref>LC/JOSIGL48</ref>
         <ref>NIF/24581118W</ref>
         <ref>NIE/</ref>
         <ref>PAS/</ref>
         <ref>CIP/VIWI0480809001</ref>
      </refs>
      <data>
         <nickname>Victor jacob  W.  .</nickname>
         <bdate>1948-08-09</bdate>
         <age>64</age>
         <gender>M</gender>
         <status>INACTIVE</status>
         <devices />
         <admissions>
            <admission>
               <ref>6901</ref>
            </admission>
         </admissions>
      </data>
   </case>
</event>

“);

Response

sample:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>

<result></result>

<ErrorMsg></ErrorMsg>

Notes:

This method will send an email using the EMAIL TEMPLATE to the EVENT's ASSIGNTO_USER (if informed and User's preferred contact channels are selected)

Related content