Authenticate#
Method to obtain an authentication token using the client key.To enhance security, we use the JWT standard, with the implementation of unique and temporary tokens. Therefore, it will be necessary to obtain a new authentication token for each request.
It can only be used once and its expiration time is 10 minutes.
The authentication token obtained as a response from this route will be used to authenticate the other services of mostValid.
Asynchronous route that allows the extraction and supplementation of textual content from files.Unlike the Synchronous Document Extraction request, mostValid's Asynchronous Document Extraction service allows the client to receive the extracted data from their image asynchronously on a server of their choice (callback server).At the end of the extraction and supplementation process, a request with all the extracted data is sent to the client's server, signaling the completion of the asynchronous process.Two types of requests will be sent to the client's callback server:Extraction: A message indicating the end of the process and presenting all the data extracted from the file/image sent by the client.
Alert: A message indicating the end of the process and that there was some failure during its execution.
This route allows two types of extraction flows:1 - Single Request Flow#
The single request flow allows the sending of a file, in a single request, to which the data extraction from the document(s) present in the file will be executed and the opening of the human analysis task if the best document fits any of the client’s validation rules.2 - Multiple Requests Flow#
The multiple requests flow is designed to assist in onboarding processes, where the person responsible for capturing the document images needs the flexibility to make several attempts. Each attempt will be treated as a process (identified by a processId) in the same operation (attribute operation), before opening a human analysis task in mostValid.
Once the capture attempts of the operation are completed, the process, with the document extraction of the best capture (highest score), proceeds to normally open the human analysis task if the best document fits any of the client's validation rules.The output of the route is a process code, processId, unique for each request sent, and an operationId code, in the case of using the multiple requests flow.Process Status#
Route to check the status of the processing of the file sent in the mostValid extraction route.The client can perform manual periodic checks on this route until the extraction result is obtained.The result of the process will be available for consultation for a maximum time of one hour after its completion. This period is counted from the moment the process status is defined as one of the final states: FINISHED, CANCELED ou ERROR.