curl --request POST \
--url https://services.leadconnectorhq.com/funnels/order-form/contact \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"locationId": "<string>",
"name": "<string>",
"phone": "<string>",
"email": "<string>",
"address": {
"addressLine1": "<string>",
"addressLine2": "<string>",
"country": {},
"state": {},
"city": {},
"zip": {}
},
"companyName": "<string>",
"attribution": {
"lead": true,
"source": "<string>",
"pageId": "<string>",
"funnelId": "<string>",
"eventData": {},
"sessionId": "<string>",
"funnelEventData": {},
"sessionFingerprint": "<string>",
"fingerprint": "<string>",
"forceCreate": true,
"session_d": 123
},
"orderFormType": "<string>",
"billingAddress": {
"std_billing_address_full_name": "John Doe",
"std_billing_address_phone": "+1234567890",
"std_billing_address_address1": "123 Main St",
"std_billing_address_city": "New York",
"std_billing_address_state": "NY",
"std_billing_address_postal_code": "10001",
"std_billing_address_country": "USA"
}
}
'curl --request POST \
--url https://services.leadconnectorhq.com/funnels/order-form/contact \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"locationId": "<string>",
"name": "<string>",
"phone": "<string>",
"email": "<string>",
"address": {
"addressLine1": "<string>",
"addressLine2": "<string>",
"country": {},
"state": {},
"city": {},
"zip": {}
},
"companyName": "<string>",
"attribution": {
"lead": true,
"source": "<string>",
"pageId": "<string>",
"funnelId": "<string>",
"eventData": {},
"sessionId": "<string>",
"funnelEventData": {},
"sessionFingerprint": "<string>",
"fingerprint": "<string>",
"forceCreate": true,
"session_d": 123
},
"orderFormType": "<string>",
"billingAddress": {
"std_billing_address_full_name": "John Doe",
"std_billing_address_phone": "+1234567890",
"std_billing_address_address1": "123 Main St",
"std_billing_address_city": "New York",
"std_billing_address_state": "NY",
"std_billing_address_postal_code": "10001",
"std_billing_address_country": "USA"
}
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?