API to register a new or an existing user for an Adobe Connect Event.
Availability
Adobe Connect 9.
Description
This action registers a new or an existing user for an event. While registering, it performs the following backgrounds tasks:
If SiteCatalyst analytics is enabled, the action updates it with this registration information.
If registration limit is enabled, the action checks if the limit is reached. If the limit is reached, the action prevents the registration. It also sends the registration limit threshold notification email, if the registration threshold count is reached with this registration.
If campaign tracking is enabled for an event and a campaign-id is passed as a request parameter, the action registers the specified campaign channel.
The action creates a new user or updates an existing user in the Connect system with the specified details like first name, last name, password, login and so on.
If registrants do not require approval after the registration, the registrant is automatically made event participant up on successful registration.
If registrants do not require approval after registration, the registrant is sent an email containing the event registration details.
Request URL
http://example.com/api/xml ?action=event-register &sco-id=12605& login=api2@adobe.com &password=1234 &password-verify=1234 &first-name=api2 &last-name=api2 &campaign-id=xyz
Parameters
Parameter Name |
Type |
Required |
Description |
---|---|---|---|
sco-id |
String |
Yes |
Sco ID of the Event. |
login |
String |
Yes |
User login of the user |
password |
String |
Yes |
Password of the user |
password-verify |
String |
Yes |
Re-type password for confirmation |
first-name |
String |
Yes |
First name of the user |
last-name |
String |
Yes |
Last name of the user |
campaign-id |
String |
No |
The campaign ID of the campaign |
Filters
Results cannot be filtered or sorted.
Response structure
<results> <status code>=<status-code/> </results>
Response values
NA
Sample request
http://example.com/api/xml?action=event-register&sco-id=12605&login=api2@adobe.com&password=1234&password-verify=1234&first-name=api2&last-name=api2&campaign-id=xyz
Sample response
<?xml version="1.0" encoding="utf-8" ?> <results> <status code="ok"/> </results>