v1

latestOpenAPI 3.1.02026-07-2416666272.6 KB
Funnel Videos

Add videos to funnel

Adds one or more videos to an existing funnel with position coordinates and first video designation

post/funnels/add_videos

Request body

idstring uuid required

Funnel ID to add videos to

Example request

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "videos": [
    {
      "id": "456e7890-e89b-12d3-a456-426614174111",
      "front_coordinates": {
        "x": 100,
        "y": 200
      },
      "is_first": true
    }
  ]
}

Response

Videos added to funnel successfully

messagestring

Example response

{
  "message": "Videos added to funnel successfully"
}