Delete a render job output
DELETE
/v1/render-jobs/{jobId}/output
const url = 'https://api.presscloud.example/v1/render-jobs/example/output';const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://api.presscloud.example/v1/render-jobs/example/output \ --header 'Authorization: Bearer <token>'Deletes a render job output owned by the authenticated account.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” jobId
required
string
Responses
Section titled “ Responses ”Render job output deleted.
Requested resource was not found.
Media type application/json
object
error
required
string
message
required
string
Example generated
{ "error": "example", "message": "example"}Requested operation conflicts with the current resource state.
Media type application/json
object
error
required
string
message
required
string
Example generated
{ "error": "example", "message": "example"}