Given a user’s login or principal-id, this action returns the list of events that the user attended. If an account-id is not provided, the currently active login account is used. If principal-id is not provided, the currently active principal is used.
Availability
Adobe Connect 9.
Description
Given a user’s login or principal-id, this action returns the list of events that the user attended. If an account-id is not provided, the currently active login account is used. If principal-id is not provided, the currently active principal is used.
Request URL
http://example.com/api/xml ?action=events-attendance &login=test@adobe.com &account-id=11143
Parameters
Parameter Name |
Type |
Required |
Description |
---|---|---|---|
principal-id |
BIGINT |
No |
The list of the events attended by the user whose ID is specified here. |
login |
String |
No |
The list of the events attended by the user whose login is specified here. |
account-id |
BIGINT |
No |
The account ID to which the user belongs whose attended events are to be listed. |
Filters
Results cannot be filtered or sorted.
Response structure
<results> <status code=<status-code>/> <event-attendance> <event sco-id=<sco-id> account-id=<account-id> folder-id=<folder-id> type=<type>icon=<icon> max-retries=<number> lang=<language> display-seq=<number> source-sco-id=<source-sco-id> version=<number> principal-id=<principal-id>> <name>Event Name</name> <url-path>Event Url</url-path> <date-begin>Begin Date</date-begin> <date-end>End Date</date-end> <date-created>Creation Date</date-created> <date-modified>Modification date</date-modified> <recordcreated>Record Creation Date</recordcreated> </event> </event-attendance> </results>
Response values
The API returns the list of events attended by the specified user.
Element |
Attribute |
Type |
Description |
---|---|---|---|
event-attendance |
- |
- |
The parent tag of the event list. |
event |
- |
- |
An event attended by the specified user. |
event |
sco-id |
BIGINT |
ID of the event |
event |
account-id |
BIGINT |
The account to which this event belongs. |
event |
lang |
String |
The associated language for this event. |
event |
source-sco-id |
BIGINT |
The source sco (content,meeting, and so on) on which this event is based. |
event |
principal-id |
BIGINT |
Principal id of the user whose attended events are being listed |
name |
- |
String |
The name of the event. |
url-path |
- |
String |
The relative path for this event. |
date-begin |
- |
datetime |
Start time of the event. |
date-end |
- |
datetime |
End time of the event. |
date-modified |
- |
datetime |
Time of the latest edit of this event. |
Sample request
http://example.com/api/xml?action=events-attendance&login=test@adobe.com&account-id=11143
Sample response
<results> <status code="ok"/> <event-attendance> <event sco-id="12605" account-id="11143" folder-id="11191" type="event" icon="event" max-retries="" lang="en" display-seq="0" source-sco-id="12600"version="2" principal-id="12631"> <name>event9</name> <url-path>/event9/</url-path> <date-begin>2011-10-01T14:30:00.000+05:30</date-begin> <date-end>2011-10-01T15:30:00.000+05:30</date-end> <date-created>2011-10-31T14:38:37.497+05:30</date-created> <date-modified>2011-10-31T15:53:02.053+05:30</date-modified> <recordcreated>2011-10-31T20:08:37.817+05:30</recordcreated> </event> </event-attendance> </results>