Skip to main content
POST
/
api
/
censor-jobs
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>"
}
👆Use above tools to generate API request code snippets.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
projectId
string
required

The project id that you want to censor.

Example:

"P2061602abcd"

clipId
string
required

The clip id that you want to censor.

Example:

"lDIOHRzdac"

options
object

Some options for the censor job.

Example:
{ "beepSound": false }

Response

201 - application/json
jobId
string

If the job was created successfully, this will contain the job ID.

message
string

A message indicating the result of the job creation.