POST
/
v0.1
/
batches
/
validate-data
{
  "status": "success",
  "data": [
    {
      "job_count": 123,
      "job_improper_format_count": 123,
      "job_improper_format": [
        {
          "error_index": 123,
          "error_message": "<string>"
        }
      ]
    }
  ],
  "message": "<string>",
  "error": {
    "code": 123,
    "details": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

Body

multipart/form-data
batch_input_data
file
required

A JSONL file containing objects to validate with the format: { "data_uuid": string, "inputs": array }

task_id
string
required

Response

200
application/json
Batch data successfully validated.
status
enum<string>
required
Available options:
success,
error
Example:

"success"

data
object[]
required
message
string
required
error
object