put https://api-v2.pandavideo.com/funnel/update
Updates an existing funnel's properties
PUT /funnel/update
Detailed Description
Updates an existing funnel's properties. Use this to rename or adjust attributes of a funnel.
HTTP Method & Path
PUT /funnel/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
name
field is documented for updates in this spec.