Registrant Data Pre-Pop



This document explains how to interact with My Booking Manager in providing pre-populated data of registrants.

My Booking Manager will accept registrant data in one of two different methods.
You can choose to use either of the methods but only one method can be used per request.
 
Methods for providing registrant data:
 
XML via form post This method uses a form post of a single element which contains an XML formatted string of the data fields being provided.
Individual elements via form post This method uses a form post of individual elements for each data field being provided.
 
 
 
XML via form post
 
This will be a single formatted string posted with name/id of "PR_XMLStr".
The parent element is <PR_Data>.
Only the <PR_Data> element is required.
Each element requires a closing tag.
 
Sub elements
Standard Question field     XML element     Data type     Data max length

First Name     <FN>     Text     20
Last Name     <LN>     Text     30
Nick Name     <NN>     Text     30
Email     <EM>     Text     75
Address     <AD1>     Text     50
Address Line 2     <AD2>     Text     50
Address Line 3     <AD3>     Text     50
City     <CY>     Text     30
Zip (Postal Code)     <ZP>     Text     20
Salutation     <SA>     Text     20
Degree     <DG>     Text     20
Suffix     <SX>     Text     5
Middle Initial     <MI>     Text     5
Title     <TI>     Text     75
Member ID     <MID>     Text     25
Customer ID     <CID>     Text     25
Company/Organization     <CO>     Text     75
Contact Phone Number     <PHM>     Text     25
Work Phone     <PHW>     Text     25
Home Phone     <PHH>     Text     25
Mobile Phone     <PHC>     Text     25
Fax Number     <FX>     Text     25
Int'l State/County     <ST2>     Text     50
Country     <CT2>     Text     50
Age     <AGE>     Text     10
 
Sample XMLString use:
<form method=post action="http://e.mybookingmanager.com/E1234567890">
<input type=hidden name="PR_XMLStr" id="PR_XMLStr" value="<PR_Data><FN>Joe</FN><LN>Bloggs</LN></PR_Data>">
<input type=submit value="Register">
</form>
 
 
 
 
Individual elements via form post
 
Requires an element with name/id of "PR_data" set to value "Y".
Only the "PR_data" element is required.
 
Data elements
Standard Question field     Element Name/ID     Data type     Data max length

First Name     PR_FN     Text     20
Last Name     PR_LN     Text     30
Nick Name     PR_NN     Text     30
Email     PR_EM     Text     75
Address     PR_AD1     Text     50
Address Line 2     PR_AD2     Text     50
Address Line 3     PR_AD3     Text     50
City     PR_CY     Text     30
Zip (Postal Code)     PR_ZP     Text     20
Salutation     PR_SA     Text     20
Degree     PR_DG     Text     20
Suffix     PR_SX     Text     5
Middle Initial     PR_MI     Text     5
Title     PR_TI     Text     75
Member ID     PR_MID     Text     25
Customer ID     PR_CID     Text     25
Company/Organization     PR_CO     Text     75
Contact Phone Number     PR_PHM     Text     25
Work Phone     PR_PHW     Text     25
Home Phone     PR_PHH     Text     25
Mobile Phone     PR_PHC     Text     25
Fax Number     PR_FX     Text     25
Int'l State/County     PR_ST2     Text     50
Country     PR_CT2     Text     50
Age     PR_AGE     Text     10
 
Sample Form:
<form method=post action="http://e.mybookingmanager.com/E1234567890">
<input type=hidden name="PR_data" id="PR_data" value="Y">
<input type=hidden name="PR_FN" id="PR_FN" value="Joe">
<input type=hidden name="PR_LN" id="PR_LN" value="Bloggs">
<input type=submit value="Register">
</form>
 
Provided by MyBookingManager a product of Miquel Pty Ltd