put https://api-v2.pandavideo.com/funnels/update/
PUT /funnels/update
Detailed Description
Updates an existing funnel's properties. Use this to rename or adjust attributes of a funnel.
HTTP Method & Path
PUT /funnels/update
Authentication Requirements
- Security Scheme:
PandaAuth(apiKey) - Header:
Authorization: <your_api_token>(no Bearer prefix)
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| Authorization | string (header) | Yes | Panda API token (without Bearer prefix) |
Request Body
Schema: UpdateFunnelRequest
UpdateFunnelRequest| Name | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | New name for the funnel. Constraints: minLength=3, maxLength=50. |
Example Request Body
{
"name": "Updated Sales Funnel"
}
Notes
- Important: The Swagger spec does not document how the target funnel is identified for update (e.g., via path, query, or body). (No description provided in Swagger)
- Only the
namefield is documented for updates in this spec.
