cURL
curl --request POST \ --url https://api.opus.pro/api/censor-jobs \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "projectId": "P2061602abcd", "clipId": "lDIOHRzdac", "options": { "beepSound": false } } '
{ "jobId": "<string>", "message": "<string>" }
Create a censor job to censor words in a clip.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The project id that you want to censor.
"P2061602abcd"
The clip id that you want to censor.
"lDIOHRzdac"
Some options for the censor job.
Show child attributes
{ "beepSound": false }
If the job was created successfully, this will contain the job ID.
A message indicating the result of the job creation.
Was this page helpful?