Create a new media processing job. Specify the job type, input files, and processing parameters. For typed endpoints with full validation, use the category-specific routes (e.g. POST /watermark/add).
cURL
curl --request POST \ --url https://api.rendobar.com/jobs \ --header 'Content-Type: application/json' \ --data ' { "type": "watermark.apply", "inputs": { "source": "https://cdn.rendobar.com/assets/examples/sample.mp4" }, "params": { "watermarks": [ { "type": "image", "url": "https://cdn.rendobar.com/assets/brand/logo-full.png", "position": "bottom-right" } ] } } '
{ "data": { "id": "job_abc123def456", "status": "dispatched" } }
Job type identifier (e.g., watermark.apply, transcode)
Input files (e.g., { source: 'https://...' })
Show child attributes
Job-specific parameters (validated per job type)
Job created and dispatched successfully
Was this page helpful?