cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
631
Views
0
Helpful
0
Replies

Register an Attendee and insert data to Custom Fields over XML API

m.karulin
Level 1
Level 1

Hello,

What is the proper way to register a new Attendee to an existing Event Center event over the XML API, when the event has custom form fields?

I am currently using AttendeeService and CreateMeetingAttendee to register an Attendee to an exisisting event.

The events and custom forms are managed over WebEx.

I have 3 checkboxes that need to be checked during the registration. I know the URL API has something called CheckBox1, CheckBox2 but i can't find anything in the XML API documentation.

Any help would be appreciated.

The XML is as follows

<?xml version="1.0" encoding="UTF-8"?>
<message xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <header>
  <securityContext>
  <webExID>123123123</webExID>
  <password>123123123</password>
  <siteName>testsite</siteName>
  </securityContext>
  </header>
  <body>
  <bodyContent xsi:type=
"java:com.webex.service.binding.attendee.CreateMeetingAttendee">
  <person>
  <name>Max Mustermann</name>
  <firstName>Max</firstName>
  <lastName>Mustermann</lastName>
  <title>Dr.</title>
  <company>Test</company>
  <webExId></webExId>
  <address>
  <addressType>Personal</addressType>
  <address1>Musterstrstraße 123</address1>
  <address2></address2>
  <city>Musterstadt</city>
  <state></state>
  <zipCode>12345</zipCode>
  <country>Germany</country>
  </address>
  <phones>
  <phone>0123123123</phone>
  <mobilePhone></mobilePhone>
  <fax></fax>
  </phones>
  <email>max@mustermann.de</email>
  <notes></notes>
  <url></url>
  <sendReminder>TRUE</sendReminder>
  </person>
  <contactID></contactID>
  <joinStatus>REGISTER</joinStatus>
  <sessionKey>123123213123</sessionKey>
  <language>ENGLISH</language>
  <role>ATTENDEE</role>
  <emailInvitations>TRUE</emailInvitations>
  <locale>Germany</locale>
  <timeZoneID></timeZoneID>
  </bodyContent>
  </body>
</message>

0 Replies 0