/api/s2s/verifySubmit one document to the Fraud Detection pipeline.
Accepts exactly one document per request as multipart/form-data. The pipeline runs synchronously and the response contains the jobId that can then be passed to GET /api/s2s/report/{jobId}. Documents are transferred to Veridexa for Fraud Detection and processed according to https://veridexa.io/privacy .
Request body
- multipart/form-data
Responses
- 200Verification job created and processed. Use the returned jobId with GET /api/s2s/report/{jobId} to retrieve the persisted productionReport.
- 400Malformed multipart body, missing 'file' field, unsupported MIME type, invalid file name, or invalid file size.
- 401Missing, malformed, or invalid API key.
- 405Method not allowed (only POST is supported).
- 415Content-Type is not multipart/form-data.
- 500Job creation, verification processing, or job load failed on the server.
- 502Server-side upload of the file to storage failed.