Store adapter — ClickFunnels¶
The adapter object contains properties for connecting to the ClickFunnels API.
Parent object: a store with property "platform" : "click_funnels"
Required properties¶
The following adapter properties are required for ClickFunnels stores.
funnel_id¶
| Property | funnel_id |
|---|---|
| Name | Funnel ID |
| Description | Numeric Funnel ID, or the Funnel URL |
| Data type | string |
| Required? | Yes |
Example¶
Example: create a new ClickFunnels store
curl -X POST \
-H "Authorization: Bearer $JWT_TOKEN" \
-H "Content-Type: application/json" \
https://api.getdropstream.com/stores \
-d @- <<EOF
{ "customer_id": "3775",
"name": "Your ClickFunnels Store",
"platform": "click_funnels",
"adapter": {
"funnel_id": "12345"
}
}
EOF
For details about this request type, see: Create a new store.
