Delete funnel

Permanently deletes a funnel and its video relationships

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

DELETE /funnels/delete/{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).

📘

Authorization

Requires a valid API Key in the Authorization header. Send the key directly — no Bearer prefix.

HTTP Method & Path

DELETE /funnels/delete/{funnel_id}

Base URL: https://api-v2.pandavideo.com.br

Path Parameters

NameTypeRequiredDescription
funnel_idstring (uuid)yesFunnel 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-folders gateway). 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 false result — funnel or organization not found (handler returns 200 with 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>'

Recipes

Path Params
uuid
required

Unique identifier of the funnel

Responses

Language
Credentials
Header
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json