Skip to main content

video.render

post/v1/videos/render

video.render

Request

Body

{
  "required": true,
  "content": {
    "application/json": {
      "schema": {
        "type": "object",
        "properties": {
          "webhook": {
            "type": [
              "string",
              "null"
            ],
            "format": "uri"
          },
          "callback_url": {
            "type": [
              "string",
              "null"
            ],
            "format": "uri"
          },
          "callback_secret": {
            "type": [
              "string",
              "null"
            ],
            "maxLength": 255
          },
          "priority": {
            "type": [
              "string",
              "null"
            ],
            "enum": [
              "low",
              "normal",
              "high"
            ]
          },
          "edit": {
            "type": "object",
            "properties": {
              "timeline": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "output": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            },
            "required": [
              "timeline",
              "output"
            ]
          }
        },
        "required": [
          "edit"
        ],
        "title": "RenderVideoRequest"
      }
    }
  }
}

Responses

200No description
Schema Structure
{
"type": "object"
}
403Authorization error
Schema Structure
{
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "Error overview."
}
},
"required": [
"message"
]
}
422Validation error
Schema Structure
{
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "Errors overview."
},
"errors": {
"type": "object",
"description": "A detailed description of each field that failed validation.",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"required": [
"message",
"errors"
]
}