Records TeamRaiser registrations. Processes online registration payments and additional gifts when classic checkout is configured.
Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
---|---|---|---|
CRTeamraiserAPI | SRTeamraiserAPI | POST | Server. |
See additional parameters in Common Parameters and the parameter definition lists below.
https://secure2.convio.net/organization/site/CRTeamraiserAPI?method=processRegistration&api_key=12345&v=1.0®istration_document={"processRegistrationRequest":{"eventid":1000,"billingFirstName":"Alice"...}}
https://secure2.convio.net/organization/site/SRTeamraiserAPI?method=processRegistration&api_key=12345&v=1.0&login_name=absmith&login_password=MyPassw0rd!®istration_document={"processRegistrationRequest":{"eventid":1000,"billingFirstName":"Alice"...}}
See Common Parameters for additional parameters that can be used with most Luminate Online API calls.
If the parameter suppress_registration_autoresponders is set to TRUE
This method accepts an XML document with data for one primary TeamRaiser event registration and, if multiple registrations are allowed, one or more secondary registrations in the same event. The XML document follows the same format as the return document getRegistrationDocument:
If the parameter suppress_registration_autoresponders is set to TRUE
See topic HTTP Status Codes.
XML response<?xml version="1.0" encoding="UTF-8"?>
<processRegistrationResponse xsi:schemaLocation="http://convio.com/crm/v1.0 http://service.convio.net/xmlschema/crm.public.teamraiser.v1.xsd" xmlns="http://convio.com/crm/v1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<transactionId>1325</transactionId>
<confirmationCode>1-1001-20-1001-1001</confirmationCode>
<primaryRegistration>
<registrationId>1001</registrationId>
<consId>1100000</consId>
</primaryRegistration>
<secondaryRegistration>
<registrationId>1002</registrationId>
<consId>1100001</consId>
</secondaryRegistration>
<secondaryRegistration>
<registrationId>1003</registrationId>
<consId>1100002</consId>
</secondaryRegistration>
</processRegistrationResponse>
{
"processRegistrationResponse": {
"confirmationCode": "1-1001-20-1001-1001",
"primaryRegistration": {
"consId": "1100000",
"registrationId": "1001"
},
"secondaryRegistration": [
{
"consId": "1100001",
"registrationId": "1002"
},
{
"consId": "1100002",
"registrationId": "1003"
}
],
"transactionId": "1325"
}
}