Adobe Connect User Community
Menu

#1 2009-02-19 11:44:41

**_bcaille_**

Impossible to update

Hello all,

I'm trying to create events using the API.  Problem i'm having is to update the "Event Information" field.  There seem no way to accomplish this in the documentation.

"Detailed Information" is filled using the "description" field of the API, what about the "Event Information" field?  Is there any documentation listing the equivalences?  This is quite confusing.  Or am I missing something?

Thanks in advance.

Offline

#2 2009-02-23 18:31:33

**_quinn_**

Re: Impossible to update

Hi bcaille,

Sorry for the late reply.   Anyways, here's how you can update the event information:

action=acl-field-update
acl-id={$event-sco-id}
field-id=event-info
value={$event-info-value}

For example, if I have an event who's sco-id is 871166135 and value is "ThisIsEventInformation", my API call would look something like this:

https://admin.acrobat.com/api/xml?actio … nformation

Or through the XML API POST format:

<action name="acl-field-update">
   <param name="acl-id">871166135</param>
   <param name="field-id">event-info</param>
   <param name="">ThisIsEventInformation</param>
</action>

Let me know if this works for you.

Offline

Board footer