Get conflicts from a screening job
GET/v1/screening_job/:id/conflicts/:file_num
Stream all conflicts for a single conflict file from blob storage (if it exists). In order to get all conflicts from a screening job
you will need to start with file_num 1 and continually increase until a 404 is hit and there are no more files you need to fetch.
Conflicts for a job are only available after the job has a status of completed which is the best indicator you are ready to use this api call.
The data will be returned as a serialized protobuf stream which the client will need to unserialize; there are details as to where the protobuf and
example scripts live to accomplish this unserialization in the LCS runbook under conflicts.
Request
Query Parameters
file_num integer
id of the conflicts file to fetch
Responses
- 200
- 400
OK
- application/json
- Schema
Schema
string
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
correlation_id string
error string
error_type string
metadata
{
"correlation_id": "string",
"error": "string",
"error_type": "string",
"metadata": {}
}
Loading...