API Library

processRegistration

Classic Checkout

Records TeamRaiser registrations. Processes online registration payments and additional gifts when classic checkout is configured.

Client ServletServer ServletHTTP Methods SupportedRequires Authentication
CRTeamraiserAPISRTeamraiserAPIPOSTServer.

See additional parameters in Common Parameters and the parameter definition lists below.

Client API Syntax

https://secure2.convio.net/organization/site/CRTeamraiserAPI?method=processRegistration&api_key=12345&v=1.0&registration_document={"processRegistrationRequest":{"eventid":1000,"billingFirstName":"Alice"...}}

Server API Syntax

https://secure2.convio.net/organization/site/SRTeamraiserAPI?method=processRegistration&api_key=12345&v=1.0&login_name=absmith&login_password=MyPassw0rd!&registration_document={"processRegistrationRequest":{"eventid":1000,"billingFirstName":"Alice"...}}

See Common Parameters for additional parameters that can be used with most Luminate Online API calls.

registration_document
Required
String
Content of the registration document in JSON or XML format. The format must match that of the getRegistrationDocument response.
match_by_username
Optional - default FALSE
Boolean
When true and primary registrant matches an existing constituent, that matches the username provided in the registration document will be registered for the event.
Type xsd:boolean.
Default is false.
suppress_registration_autoresponders
Optional. Prevent autoresponders from being sent to the constituent(s) being registered.
Type xsd:boolean.
Default is false.

Autoresponder suppression

If the parameter suppress_registration_autoresponders is set to TRUE the following autoresponders will not be sent to primary or secondary registrants:

  • Thanks for Creating an Account
  • Thanks for Registering
  • Thanks for Forming a Team
  • Sample Solicitation
update_constituent_profile
Optional. If set to true and an existing constituent is matched for the primary registrant the constituent profile will be updated. Secondary registrant information is never used for updates. It is only used for creating new constituents.
Type xsd:boolean.
Default is false.
Common Server Parameters
See topic Common Parameters.
registration_document
Required. The XML document containing the data for the primary registration and any secondary registrations.
Type xsd:string.

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:

match_by_username
Optional. If set to true an existing constituent that matches the username provided in the registration document will be registered for the event.
Type xsd:boolean.
Default is false.
suppress_registration_autoresponders
Optional. Prevent autoresponders from being sent to the constituent(s) being registered.
Type xsd:boolean.
Default is false.

Autoresponder suppression

If the parameter suppress_registration_autoresponders is set to TRUE the following autoresponders will not be sent to primary or secondary registrants:

  • Thanks for Creating an Account
  • Thanks for Registering
  • Thanks for Forming a Team
  • Sample Solicitation
update_constituent_profile
Optional. If set to true and an existing constituent is matched for the primary registrant the constituent profile will be updated. Secondary registrant information is never used for updates. It is only used for creating new constituents.
Type xsd:boolean.
Default is false.

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>
JSON response
JSON
{
  "processRegistrationResponse": {
    "confirmationCode": "1-1001-20-1001-1001",
    "primaryRegistration": {
      "consId": "1100000",
      "registrationId": "1001"
    },
    "secondaryRegistration": [
      {
        "consId": "1100001",
        "registrationId": "1002"
      },
      {
        "consId": "1100002",
        "registrationId": "1003"
      }
    ],
    "transactionId": "1325"
  }
}