event_issuer_list ( session, event_id)
event_issuer_list ( session, event_id)
Is a function to obtain a list of possible issuers in the issuers field show in the event tab screen. | |
Input parameters: | session: a token obtained from a session_init () call event_id: is the internal ID reference to the event object |
Output parameters: | result: A XML with the possible issuers list. Only three options: POSTER, CASE, OTHER with the description about the option in multilanguage 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_issuer_list(“LCAAAAAAAAAAAA” ,”123”) |
Response sample: | <?xml version="1.0" encoding="utf-8" standalone="yes"?> <result> <issuer_list> <option> <value>POSTER</value> <description>…..</description> </option> <option> <value>CASE</value> <description>…..</description> </option> <option> <value>OTHER</value> <description>…..</description> </option> </issuer_list> </result> <ErrorMsg></ErrorMsg> |
Notes: |
|