Create a new submission for a document to be analyzed
The access token received from the authorization server in the OAuth 2.0 flow.
User-defined ID of analyzed file - typically refers to internal ID of the analyzed document in user's CMS. Please ensure the query_id of any document is reviewed prior to submitting to ensure no PII is shared. Query_id is used for subsequent indexing of outputs from the document forensics analysis.
1024Type of analysis pipeline to execute.
FRAUD_ONLY, CLASSIFICATION_ONLY, QUALITY_ONLY true to enable Adaptive Decision for the submitted document, false to disable it
true to enable attachment of submission characteristics for the submitted document, false to disable it (see submission_characteristics_upload_url field in the response object)
Submission created successfully
Presigned URL to AWS S3 service where the actual file will
be uploaded using the PUT method. Note that the content type in the PUT request
has to be set to application/octet-stream.
Example file upload request using curl:
curl --request PUT \
--url $UPLOAD_URL \
--header 'content-type: application/octet-stream' \
--data @path_to_fileUnique submission ID generated by Documents service that uniquely identifies the submitted file.
24 - 36URL where submission characteristics can be attached to this submission - see the /v2/submission/{submission_id}/characteristics endpoint. Note that this URL is not pre-signed and requires access token in headers. The URL may be relative.