post https://api-v2.pandavideo.com/funnels/create
Creates a new video funnel for the authenticated user's organization
POST /funnels/create
Detailed Description
Creates a new video funnel for the authenticated user's organization. Use this endpoint when you need to start a new funnel structure where videos will later be positioned and connected.
HTTP Method & Path
POST /funnels/create
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: CreateFunnelRequest
CreateFunnelRequest| Name | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | Name of the funnel. Constraints: minLength=3, maxLength=50. |
Example Request Body
{
"name": "Sales Funnel Q1"
}
Notes
- The created resource details (e.g.,
id,organization_id, timestamps) are returned by the API, but responses are not included here per guidelines.
