Submitting via JSON

If you’d like to submit leads to the Lead Waypoint API via a backend call, you may do so in JSON format. Details are listed below.

Gets a list of all partners that are connected to you. This includes precision connect and partner attribute data.

Resource https://leadwpapiprod.aprimodm.com/api/v1.0/Leads/Collector
Method POST

Request Sample

{
"CollectorKey": "F81DEC95-DCDE-4505-804F-148C6BB9F902",
"FirstName": "Jack",
"LastName": "Smith",
"Company": "Aprimo DM",
"Title": "Director",
"Email": "jsmith@revenew.com",
"Phone": "555-483-3829",
"Country": "USA",
"Address1": "192 West Monroe St",
"Address2": "Suite 12",
"City": "Chicago",
"State": "IL",
"PostalCode": "60601",
"Source": "LeadGenForm",
"CustomField1": "Product XYZ",
"CustomField2": "Conference",
"CustomField3": "10",
"Segment": "Brand",
"Description": "Jack is interested in Product XYZ."
}

Response Sample

{
	"ErrorCode": 1,
	"ErrorMessage": "Success",
	"LeadResponse": {
		"LeadID": 1790,
	"FirstName": "Jack",
"LastName": "Smith",
"Company": "Aprimo DM",
"Title": "Director",
"Email": "jsmith@revenew.com",
"Phone": "555-483-3829",
"Country": "USA",
"Address1": "192 West Monroe St",
"Address2": "Suite 12",
"City": "Chicago",
"State": "IL",
"PostalCode": "60601",
"Source": "LeadGenForm",
"Score": "10",
"CustomField1": "Product XYZ",
"CustomField2": "Conference",
"CustomField3": "10",
"Segment": "Brand",
"Description": "Jack is interested in Product XYZ."
	}
}