curl --request POST \
--url https://services.leadconnectorhq.com/funnels/order-form/products \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"locationId": "<string>",
"funnel": "<string>",
"step": "<string>",
"name": "<string>",
"product": "<string>",
"price": "<string>",
"bumpProduct": true,
"displayText": "<string>",
"authorizeAmount": 123
}
'curl --request POST \
--url https://services.leadconnectorhq.com/funnels/order-form/products \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"locationId": "<string>",
"funnel": "<string>",
"step": "<string>",
"name": "<string>",
"product": "<string>",
"price": "<string>",
"bumpProduct": true,
"displayText": "<string>",
"authorizeAmount": 123
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?