Skip to main content
POST
/
funnels
/
event
/
conversion
Conversion Api
curl --request POST \
  --url https://services.leadconnectorhq.com/funnels/event/conversion \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "eventName": "PageView",
  "contact": {
    "email": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "phone": "<string>",
    "city": "<string>",
    "state": "<string>",
    "postalCode": "<string>",
    "country": "<string>",
    "dateOfBirth": "2023-11-07T05:31:56Z"
  },
  "eventId": "<string>",
  "url": "<string>",
  "fbp": "<string>",
  "fbc": "<string>",
  "fbclid": "<string>",
  "fbEventId": "<string>",
  "currency": "<string>",
  "value": "<string>"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
eventName
enum<string>
required

Name of the event

Available options:
PageView,
Purchase,
Lead,
CompleteRegistration,
AddToCart,
AddToWishlist,
InitiateCheckout,
Search,
ViewContent,
Contact,
CustomizeProduct,
Donate,
FindLocation,
Schedule,
StartTrial,
SubmitApplication,
Subscribe,
ViewCart,
ViewProduct,
Other
contact
object
required
eventId
string

Pixel ID of the transaction

url
string

URL where the event happened

fbp
string

Facebook Browser ID

fbc
string

Facebook Click ID

fbclid
string

Facebook click identifier

fbEventId
string

Facebook Event ID

currency
string

Currency of the transaction

value
string

Value of the transaction

Response

200

Successful response

Last modified on March 4, 2026