Skip to main content
POST
/
funnels
/
order-form
/
products
cURL
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
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json
locationId
string
required
funnel
string
required
step
string
required
name
string
required
product
string
required
price
string
required
bumpProduct
boolean
required
displayText
string
required
authorizeAmount
number
required

Response

201 - undefined
Last modified on March 4, 2026