delete https://api-v2.pandavideo.com/funnel/remove_videos
Removes one or more videos from a funnel
DELETE /funnel/remove_videos
Detailed Description
Removes one or more videos from a funnel. Use this when cleaning up or restructuring a funnel’s layout.
HTTP Method & Path
DELETE /funnel/remove_videos
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: RemoveVideosRequest
RemoveVideosRequest
Name | Type | Required | Description |
---|---|---|---|
videos | array of string (uuid) | Yes | List of video IDs to remove from the funnel. |
Example Request Body
{
"videos": [
"456e7890-e89b-12d3-a456-426614174111",
"789e0123-e89b-12d3-a456-426614174222"
]
}
Notes
- Important: The Swagger spec does not document how the target funnel is identified for removal (e.g., via path, query, or body). (No description provided in Swagger)
- Only the list of
videos
is documented for this operation.