delete
https://api-v2.pandavideo.com.br/funnels/delete/
Permanently deletes a funnel and its video relationships
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
DELETE /funnels/delete/{funnel_id}
{funnel_id}Permanently deletes a funnel and its associated Panda Folder. Videos previously linked to the funnel keep existing but lose the link (no cascade delete on videos themselves).
AuthorizationRequires a valid API Key in the
Authorizationheader. Send the key directly — noBearerprefix.
HTTP Method & Path
DELETE /funnels/delete/{funnel_id}
Base URL: https://api-v2.pandavideo.com.br
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
funnel_id | string (uuid) | yes | Funnel identifier. |
Response
Success Response (200)
{ "message": "Funnel deleted successfully" }
Side effects.
- The funnel‑video links (
funnel_videos) are removed.- The auto‑created Panda Folder linked to the funnel is also deleted (
panda-ms-foldersgateway). If folder deletion fails the funnel is still removed.- Videos themselves are not deleted — they survive but lose their funnel/folder association.
- This action is irreversible.
Error Responses
- 403 — user does not belong to the funnel's organization (
"User does not have permission to delete this funnel."). - 200 with
falseresult — funnel or organization not found (handler returns200with no error). Treat as a no‑op on the client side. - 401 — missing/invalid API Key.
- 500 — internal error.
Example Usage
cURL
curl --request DELETE \
--url 'https://api-v2.pandavideo.com.br/funnels/delete/a1b2c3d4-e5f6-7890-abcd-ef1234567890' \
--header 'Authorization: <your-api-key>'