cURL
curl --request POST \ --url https://gateway.app.clavata.ai:8443/v1/batch-jobs \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "policyId": "<string>" } '
{ "batchJobId": "<string>", "name": "<string>", "error": { "errorCode": "BATCH_JOB_ERROR_UNSPECIFIED", "errorMessage": "<string>" }, "inputFileUploadUrl": "<string>" }
Creates a new batch job that can process multiple content items in bulk. Returns a presigned URL for uploading the input file. Start the job by making a POST request to StartBatchJob after uploading the input file.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
A successful response.
Show child attributes