Skip to main content

details

/v2/private/salesAgent/aa/fe/details/{leadId}

Available Methods​

  • [POST]

POST /v2/private/salesAgent/aa/fe/details/{leadId}​

This endpoint is used by a Sales Agent to submit the quoteInfo and orderDecision ep for a lead and creates an order.

info

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

Params​

ParamTypeDescription
firstNameStringThe lead's first name.
lastNameStringThe lead's last name.
dateOfBirthDateThe lead's birthday.
genderEnum - ['Male', 'Female']The lead's gender.
streetStringThe lead's street address.
street2StringThe lead's APT number, suite number etc.
heightInFeetIntegerThe lead's height in feet.
heightInInchesIntegerThe lead's height in inches.
weightIntegerThe lead's weight (in pounds).
cityStringThe lead's city.
stateStringThe lead's state.
zipIntegerThe lead's postal code.
phoneNumberThe lead's phone number.
emailStringThe lead's email address.
occupationStringThe lead's occupation.
annualSalaryIntegerThe lead's annual salary.
driversLicenseNumberStringThe lead's driver's license number.
birthStateStringThe state where the lead was born.
stateIssuedStringThe state that issued the lead's ID.
ssnNumberThe lead's social security number (SSN).

Request Example​

Example request body
{
"firstName": "George",
"lastName": "Washington test",
"dateOfBirth": "1951-03-07",
"gender": "Male",
"street": "164 W Walnut Ave",
"heightInFeet": 5,
"heightInInches": 10,
"weight": 180,
"city": "Rialto",
"state": "CA",
"zip": 92376,
"phone": 2105559289,
"email": "amora2105559289@everdays.com",
"occupation": "welder",
"annualSalary": 100000,
"driversLicenseNumber": "13fe313",
"birthState": "CA",
"stateIssued": "CA",
"ssn":321556785
}

Returns​

The user and populates fields in purchase.aa

Example return of am am object
data: {
...userData,
purchase: {
aa: {
fe: {
"appNumber": 1048108,
"planType": "Immediate",
"transactionId": 43066
}
}
}
}