/
action_exec ()

action_exec ()

Function prototype

action_exec (session, action_token)

API VersionAll

This function performs an action selected from an ACTION class response from action:_list ().

Input

parameters:

  • session: is the session id obtained in the session_init call
  • action_token: and ACTION token reference returned from an action_list () call. See ACTION TOKENS for more information

Output

parameters:

  • object: Indicates the type of object affected by the execution of the action. For example, after executing an action that inserts a new EVENT, the value of "OBJECT" would be "EVENT"
    • CASE
    • EVENT
    • TASK
    • DASHBOARD
    • LIBRARY:PROGRAM|LIBRARY:PROGRAM:TASK|VERSION
    • TEAM:USR
    • TEAM:TEAM
    • TEAM|PROGRAM
    • LIBRARY:PROGRAM:PROFILE
    • LIBRARY:PROGRAM|VERSION
    • LIBRARY:PROGRAMS
    • LIBRARY:PROGRAM
    • LIBRARY:FORM Added in API Version 2.7.32
    • LIBRARY:ITEM Added in API Version 2.7.32
    • TEAM|PROGRAM|MEMBER
    • LIBRARY:PROGRAM|SUBSCRIPTIONS
    • LIBRARY:PROGRAM|PROTOCOL|VERSION
    • USER
    • USER:CASE_LIST : returned after discharging or rejecting an ADMISSION
    • “” (NULL OBJECT)
  • ref: A reference to the object affected by the execution of the action. For example, after executing an action that inserts a new EVENT, this would be the reference to the EVENT created
  • 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

sample:

action_exec ( “LCAAAAAAAAAAAA”, “ACTION=ADMISSION_JOIN&PROTOCOL_ID=915&DATE=2015-07-21&ADMISSION_ID=22362”  );

Response

sample:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<object>TASK:ADM</object>
<ref>123</ref>
<ErrorMsg></ErrorMsg>
<ErrorCode></ErrorCode>

Notes:


Action Tokens


Related content