Transferring Data From LeadByte To Go High Level
This article shows you what you need to do to transfer your lead data from LeadByte to a GHL Marketing Campaign.
For this to work you will need to have A Marketing Campaign in GHL
Example
With every Marketing Campaign a Campaign ID is generated. This is required in the JSON Delivery POST from LeadByte. When you create a contact in GHL to start a Marketing Campaign you not only need to pass over the personal data but also declare for what Marketing Campaign ID.
LeadByte Delivery Set Up
The delivery in LeadByte is a JSON POST request.
The Request URL is: https://api.gohighlevel.com/campaign/start
Example JSON Body
{
"campaign_id": "ENTER_YOUR_ID",
"first_name": "[firstname]",
"last_name": "[lastname]",
"phone": "[phone1]"
}
Response
The success response for Go High Level can be handled using a Status 200 OK
More information here https://developers.gohighlevel.com/
Comments