Skip to main content

createLead

/v2/private/salesAgent/createLead

Available Methods​

  • POST

POST /v2/private/salesAgent/createLead​

This endpoint is used by a Sales Agent / Counselor to create a new lead.

info

The user calling this endpoint must be Sales Agent / Counselor or Everdays Admin

Params​

ParamTypeDescription
firstNameStringThe lead's first name.
lasteNameStringThe lead's last name.
dateOfBirthDateThe lead's birthday.
genderEnum - ['Male', 'Female']The lead's gender.
phoneNumberThe lead's phone number.
emailStringThe lead's email address.
stateStringThe lead's state.
Example request body
body: {
firstName: "Bobby",
lastName: "Boucher",
dateOfBirth: "01-01-1998",
gender: "Male",
phone: "3105551234",
email: "waterboy@sclu.edu",
state: "LA"
}

Returns​

The created lead's user object.

Example return object of just user
user: {
...
}
info