Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
stylenone

...

Below is an example of the URL string. In this case, we are passing utm_medium, utm_source, utm_campaign, utm_content and utm_term

https://www.yourschool.edu/my-utmcodes-ip?utm_medium=cpc&utm_source=google&utm_campaign=1053902585&utm_content=389973371894_c_1t1&utm_term=online%20masters%20in%20social%20entrepreneurship

If a parameter value of leadUrl is passed into the Open API form, Campus Café will look for an included tracking record in Admissions Portal Config with a trigger name of LEADURL. The record must be checked as included and be placed in a tab at a location to be included on the form. The tracking record will be added with a the entire leadUrl value stored in the tracking record’s comment box.

...

Code Block
languagehtml
<form action="https://campusCafeURL/cafeweb/openAPI/v1/inquiries"
 method="POST">

<input type="hidden" name="portalConfig" value="WebInquiry" />

<input type="hidden" name="value" value="Inquiry" />

<input type="hidden" name="token" value="baseball" />

<input type="hidden" name="leadUrl" value="https://www.myschool.com/thisform?utm_medium=med&utm_source=google&utm_campgn=548&utm_conten=778&utm_term=online%20learning%20in%20social%20studies&gclid=KOFS_34_3423KI"/>

     <label for="firstName">First Name:</label><input type="text"

name="firstName" id="firstName" /><br />

     <label for="lastName">Last Name:</label><input type="text"

name="lastName" id="lastName" /><br />

     <label for="emailAddress">Email Address:</label><input

type="text" name="emailAddress" id="emailAddress" /><br />

     <label for="phoneNumber">Phone Number:</label><input type="tel"

name="phoneNumber" id="phoneNumber" /><br />

     <label for="inquirySource">Inquiry Source:</label><input

type="text" name="inquirySource" id="inquirySource" />

<br />

     <label for="majorCode">Major Code:</label><input type="text"

name="majorCode" id="majorCode" /><br />


    <label for="enteringSemester">Major>Entering CodeSemester:</label><input
 type="text" name="enteringSemester"
 id="enteringSemester"/><br />

     <label for="streetAddress1">Street Address 1:</label><input

type="text" name="streetAddress1" id="streetAddress1" />

<br />

     <label for="streetAddress2">Street Address2:</label><input

type="text" name="streetAddress2" id="streetAddress2" />

<br />

     <label for="streetAddress3">Street Address3:</label><input

type="text" name="streetAddress3" id="streetAddress3" />

<br />

     <label for="city">City:</label><input type="text" name="city"

id="city" /><br />

     <label for="state">State:</label><input type="text" name="state"

id="state" /><br />

     <label for="zipCode">Zip Code:</label><input type="text"

name="zipCode" id="zipCode" /><br />

     <label for="country">Country:</label><input type="text"

name="country" id="country" /><br />

     <input type="submit" value="Submit"/>

</form>

...