These requests retrieve information about:
- the scoring types in a group and its subscribers, such as a description of the group and subscriber counts.
- an event, such as name, date, and payment options, and
Scoring Summary
Use this request to retrieve information about scoring groups and their subscribers.
Request
<GridRequest xmlns="http://partner.informz.net/aapi/2009/08/"> <Password></Password> <Brand id="xxxx">Brand Name</Brand> <User>admin</User> <Grids> <Grid type="scoring_summary"> <ReturnFields> <DataElement>brand_id</DataElement> <DataElement>last_calculated_date</DataElement> <DataElement>scoring_group_description</DataElement> <DataElement>total_subscribers_in_scoring_group</DataElement> <DataElement>subscribers_not_in_scoring_group</DataElement> <DataElement>score_type_name</DataElement> <DataElement>a_score_subscribers</DataElement> <DataElement>a_score_description</DataElement> <DataElement>a_score_subscriber_Percentage</DataElement> <DataElement>b_score_subscribers</DataElement> <DataElement>b_score_description</DataElement> <DataElement>b_score_subscriber_Percentage</DataElement> <DataElement>c_score_subscribers</DataElement> <DataElement>c_score_description</DataElement> <DataElement>c_score_subscriber_Percentage</DataElement> <DataElement>d_score_subscribers</DataElement> <DataElement>d_score_description</DataElement> <DataElement>d_score_subscriber_Percentage</DataElement> <DataElement>f_score_subscribers</DataElement> <DataElement>f_score_description</DataElement> <DataElement>f_score_subscriber_Percentage</DataElement> </ReturnFields> </Grid> </Grids> </GridRequest>
Demo data
To retrieve demo data from this request (typically for testing), append the text "_demo" to the Grid type tag.
<Grid type="scoring_summary_demo">
Event
Use this request to retrieve information about an event.
| Data Element | Type | Length | Conditional | Description |
|---|---|---|---|---|
| event_id | Int | True | Unique Event ID | |
| event_deleted | bit | True | Whether or not the event is deleted | |
| Name | String | 255 | True | Name of the Event |
| event_date | Datetime | True | Date and Time of Event | |
| event_header | String | -1 | True | Event Header (Top of Form) |
| event_footer | String | -1 | True | Event Footer (Bottom of Form) |
| is_activated | Bit | True | Whether or not the event has been activated | |
| max_attendees | Int | True | Maximum number of attendees | |
| web_url | String | 8000 | True | URL of the event |
| use_waiting_list | Bit | True | Does event use a waiting list | |
| use_early_bird | Bit | True | Does event use early bird registration | |
| early_bird_date | Datetime | True | Date and time of early bird registration | |
| use_late_reg | Bit | True | Does event use late registration | |
| late_reg_date | Datetime | True | Date and time of late registration | |
| payment_option_name | String | 255 | True | Payment option selected |
| not_registered_until_paid | Bit | True | Not registered until paid | |
| payment_type_name | String | 255 | True | Selected payment type |
| base_cost | Currency | True | Registration cost | |
| early_bird_base_cost | Currency | True | Early Bird Registration Cost | |
| late_reg_base_cost | Currency | True | Late Registration Cost | |
| refund_not_attend | Bit | True | Refund if not attend | |
| registrants_per_form | Int | True | Number of registrants allowed per form |
Request
<GridRequest xmlns="http://partner.informz.net/aapi/2009/08/">
<Password></Password>
<Brand id="9999">Test Brand</Brand>
<User></User>
<Grids>
<Grid type="event">
<ReturnFields>
<DataElement>event_id</DataElement>
<DataElement>date_created</DataElement>
<DataElement>name</DataElement>
<DataElement>event_date</DataElement>
<DataElement>web_url</DataElement>
<DataElement>payment_option_name</DataElement>
</ReturnFields>
</Grid>
</Grids>
</GridRequest>