CARET Legal's CRM feature allows you to have leads created for you directly through your website. When a prospective client fills in their information through your online form, their details will automatically show up in CARET Legal CRM.
To manually add our webform to your website:
- Select Firm Settings from the drop-down arrow beside your avatar.
-
Click CRM from the vertical menu bar and select CRM Options.
- Your Token is found here, or contact Support.
- Your Token is found here, or contact Support.
- Enter your First and Last name as they are required on the form.
If you do not enter a full name the record will not go through.
To Validate Token:
method: POST
parameters: Token (STRING)
return: boolean whether token is valid
To Submit Lead:
method: POST
parameters: TOKEN (STRING)
FirstName (STRING)
LastName (STRING)
Email (STRING)
Phone (STRING)
Message (STRING)
SubmissionUrl (STRING)
IpAddress (STRING)
ReferrerUrl (STRING)
LandingPage (STRING)
VisitorHistory (List of object containing VisitorType (INT, 1=Company, 2=Person), Url (STRING), VisitedDate (DateTime), and TimeSpentOnPage (String))
Example external lead submission using jQuery Ajax call:
$.ajax({
method: 'POST',
dataType: 'json',
data: {
'Token': '____',
'FirstName': 'Derek',
'LastName': 'Jeter',
'Phone': '123-567-6780',
'Message': 'In need of lawyer asap'
}
})