Listen Submission

Listen the submission that has been sent, with the resultId

Listen Submission

This is how you listen the submission, by getting the resultId coming from the Start Submission request.

Authentication

triangle-exclamation

Download Sanitized File

To get the sanitized file, there are some steps to do.

  • First thing is after status key is 2 (Completed) we can access the result key.

  • In result key, there is an array field: files

Example of Files

"files": [
	{
		"name": "58b46901099bd149b6a9c186ddd5394e2d98cfafdecd179bc428e89c01303a2b_sanitized.docx",
		"id": "336ccc96-286c-4a12-afce-4efe2f8fdba4"
	}
],
  • Array contains the extracted files after the process, which is sanitized file in our CDR case.

  • The name of the file is just for information or for your use case. The main thing you will use to get the sanitized file is the id field.

  • Please check the Download Sanitized File part the download the file with the given file id in the result of the submission.

Returns the result of the submission.

get
Path parameters
submissionIdstringRequired

The UUID of the submission

Example: a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6
Responses
chevron-right
200

Returns the result id and a message

application/json
get
/listen/{submissionId}

Example Response

Last updated