post
https://api-v2.pandavideo.com.br/funnels/create
Creates a new video funnel for the authenticated user's organization
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
POST /funnels/create
Creates a new video funnel inside the authenticated user's organization. A matching folder is created in Panda Folders so videos added to the funnel are auto‑grouped there.
AuthorizationRequires a valid API Key in the
Authorizationheader. Send the key directly — noBearerprefix.
HTTP Method & Path
POST /funnels/create
Base URL: https://api-v2.pandavideo.com.br
Authentication Requirements
| Header | Value |
|---|---|
Authorization | <your-api-key> (no Bearer prefix) |
Request Body
Content-Type: application/json
Body Parameters
| Field | Type | Required | Description |
|---|---|---|---|
name | string (3–50) | yes | Funnel display name. Must be unique inside the organization. |
{ "name": "Sales Funnel Q1" }Response
Success Response (201)
{
"message": "Funnel created successfully",
"data": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Sales Funnel Q1",
"organization_id": "11111111-2222-3333-4444-555555555555",
"folder_id": "99999999-8888-7777-6666-555555555555"
}
}Response Schema
| Field | Type | Description |
|---|---|---|
data.id | string (uuid) | Funnel identifier. |
data.name | string | Funnel name (echoes input). |
data.organization_id | string (uuid) | Owning organization. |
data.folder_id | string (uuid) | null | Folder auto‑created in Panda Folders. null if folder creation failed (funnel is still created). |
Error Responses
- 400 —
nameshorter than 3 / longer than 50, or a funnel with the samenamealready exists in the organization ("Funnel with the same name already exists."). - 401 — missing/invalid API Key.
- 500 — internal error.
Example Usage
cURL
curl --request POST \
--url 'https://api-v2.pandavideo.com.br/funnels/create' \
--header 'Authorization: <your-api-key>' \
--header 'Content-Type: application/json' \
--data '{ "name": "Sales Funnel Q1" }'