WEBActivityGetRegistrantEvents
| Initial Build | 2010.01 |
| xWeb | Web Method |
| Response Type | XML node |
The WEBActivityGetRegistrantEvents web method returns pricing and invoice information about a specific event registrant main registration fee. Sessions and other related accounting transactions are not included in this method.
Parameters
RegKey (guid). The registrant key.
Response
XmlNode
Sample Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.avectra.com/2005/">
<soapenv:Header>
<ns:AuthorizationToken>
<ns:Token>*****************</ns:Token>
</ns:AuthorizationToken>
</soapenv:Header>
<soapenv:Body>
<ns:WEBActivityGetRegistrantEvents>
<ns:RegKey>61262b47-276d-42c8-8e40-78b2233784d0</ns:RegKey>
</ns:WEBActivityGetRegistrantEvents>
</soapenv:Body>
</soapenv:Envelope>
Sample Response
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Header>
<AuthorizationToken xmlns="http://www.avectra.com/2005/">
<Token>d0b5db98-fdeb-4741-a6ca-23472193c2e1</Token>
</AuthorizationToken>
</soap:Header>
<soap:Body>
<WEBActivityGetRegistrantEventsResponse xmlns="http://www.avectra.com/2005/">
<WEBActivityGetRegistrantEventsResult>
<Results recordReturn="1">
<Result>
<evt_title>Comm Event</evt_title>
<prc_display_name>Comm Event</prc_display_name>
<prc_prd_key>28a711f8-b340-4796-9d5d-4cbcc7d9e1f8</prc_prd_key>
<prc_key>ee2b82f7-8a6a-4266-887c-5108be6f0bd4</prc_key>
<price>25</price>
<rxi_key>968afd8f-5fd5-441e-8352-7380e2194016</rxi_key>
<reg_evt_key>c219117d-b5bc-409e-b3aa-2c56af0c7fdb</reg_evt_key>
<reg_reg_key/>
</Result>
</Results>
</WEBActivityGetRegistrantEventsResult>
</WEBActivityGetRegistrantEventsResponse>
</soap:Body>
</soap:Envelope>
The rxi_key column belongs to the ev_registrant_x_ac_invoice table.
JSON Method
POST /xWeb/JSON/WEBActivityGetRegistrantEvents
DATA: JSON
{
"WEBActivityGetRegistrantEvents" : {
"RegKey" : "{{regKeyWEBActivityGetRegistrantSessions}}"
}
}
SAMPLE RESULT
HTTP STATUS: 200
DATA: JSON
{
"Results": {
"@recordReturn": "1",
"Result": [
{
"evt_title": "xWebJSON Postman test event",
"prc_display_name": "xWebJSON Postman test event",
"prc_prd_key": "a769424b-9d1b-4c7b-b6ac-eafae82faa3e",
"prc_key": "2f2987d8-ff1a-4988-97d8-23bdbb508947",
"price": "115.0000",
"rxi_key": "714adaa3-3bf4-4132-b064-b65970b25193",
"reg_evt_key": "710d06d6-76f4-498d-a263-b0012c6db2a3",
"reg_reg_key": "6c4e6b93-a3e1-443a-9033-f740041743ba",
"reg_cancel_date": null
}
]
}
}