Skip to main content
PUT
/
api
/
public
/
v1
/
funnels
/
{funnelId}
Update funnel with routing
curl --request PUT \
  --url https://app.tagadapay.com/api/public/v1/funnels/{funnelId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "funnelId": "funnelv2_123",
  "storeId": "store_123",
  "config": {
    "id": "my-funnel",
    "name": "My Updated Funnel",
    "version": "1.0.1",
    "steps": []
  }
}
'
{
  "funnel": {
    "id": "funnelv2_123",
    "name": "My Updated Funnel"
  },
  "operations": [
    {
      "type": "mount",
      "stepId": "step_1",
      "status": "completed"
    }
  ],
  "summary": {
    "total": 1,
    "mounted": 1,
    "unmounted": 0,
    "swapped": 0,
    "failed": 0
  }
}

Authorizations

Authorization
string
header
required

Enter your API key as: Bearer your-api-key

Path Parameters

funnelId
string
required

Body

application/json
storeId
string
required
config
object
required
isDefault
boolean
active
boolean

Response

Successful response