Document Capture and Reuse

In this section, you will find the specific details on creating a process that includes Document Capture and Reuse as a capability


Introduction


In this section, you will find detailed documentation about the functionality of the endpoints related to the Document Capture and Reuse capability. The use of Reuse requires that there be a previous Identity Verification process and this must obtain a “YES” response OR the Risk Score equal or more than +50, otherwise it will be necessary to capture the user's document.

This is an synchronous capability that requires consuming two endpoints, detailed in this documentation, for its full utilization.

The capabilities of the Unico IDCloud platform via Client are managed through API Keys—used as a parameter in the request headers—that define the access scope. As a prerequisite, it is necessary to have an API Key configured exclusively for the Document Capture and Reuse capability, ensuring dedicated and secure access to the resource.

Talk to your project manager to obtain the API Key with this configuration.

Getting started


Your API requests are authenticated using an access token. Any request that does not include a valid access token will return an error.

You can learn more about generating an access token here.

GetReusableDocuments


GetReusableDocuments

get

Endpoint to get a user's documents for reuse in by Client.

Query parameters
codestringrequired

User identifier value (e.g., CPF value).

Example: 12345678909
typestringrequired

Document type (e.g., BR_CPF).

Example: BR_CPF
Header parameters
Authorizationstringrequired

Valid access-token.

APIKEYstringrequired

Valid APIKEY with the capabilitie Document Capture and Reuse enabled.

Responses
curl -L \
  --url 'https://api.id.uat.unico.app/documents/v1/client/v1/process?code=text&type=text' \
  --header 'Authorization: text' \
  --header 'APIKEY: text'
{
  "items": [
    {
      "documentType": "unico.moja.dictionary.br.rg.v2.Rg",
      "documentId": "2aaf6037-0153-415d-b9fe-cf7e8198408f"
    }
  ]
}

If you find a document to be reused, in the process creation endpoint you will enter the ID of this document in the document.documentId parameter and it will not be necessary to capture the document and send the base64 in the document.files parameter.

CreateProcess


Create process

post

Endpoint to create a new Document process via Client.

Header parameters
Authorizationstringrequired

Valid access token.

APIKEYstringrequired

Valid APIKEY with the capabilitie Document Capture and Reuse enabled.

Body
subjectobjectrequired

User information.

documentobjectrequired

Information about the document to be captured.

Responses
curl -L \
  --request POST \
  --url 'https://api.id.uat.unico.app/processes/v1' \
  --header 'Authorization: text' \
  --header 'APIKEY: text' \
  --header 'Content-Type: application/json' \
  --data '{
    "subject": {
      "code": "12345678909",
      "name": "Luke Skywalker",
      "email": "luke@unico.io",
      "phone": "551972557070"
    },
    "document": {
      "purpose": null,
      "authProcessId": "80371b2a-3ac7-432e-866d-57fe37896ac6",
      "documentId": "80371b2a-3ac7-432e-866d-57fe37896ac6"
    }
  }'
{
  "id": "2b034568-dfaf-463f-94fb-18ed93c312e8",
  "status": 3,
  "document": {
    "id": "b97c3fd9-d95d-413f-bc0a-75eb87304421",
    "type": "Driver's License",
    "cpfMatch": false,
    "faceMatch": false,
    "content": {
      "numero": "044589731564",
      "rgNumero": "123456789 SESP PR",
      "nomeCivil": "Homer Simpson",
      "filiacao": [
        "Monasimpson",
        "Monasimpson"
      ],
      "dataNascimento": "1990-05-12T00:00:00Z",
      "dataHabilitacao": "1997-11-18T00:00:00Z",
      "dataExpiracao": "2017-12-07T00:00:00Z",
      "dataEmissao": "2012-12-07T00:00:00Z",
      "localEmissao": "Curitiba PR",
      "categoria": "B",
      "renachNumero": "PR904987581"
    },
    "fileUrls": [
      "https://url-signer-1",
      "https://url-signer-2"
    ]
  }
}

Content returned in document.content based on document.type:


Still need help?

Didn't find something or still need help? If you're already a client or partner, you can reach out through our Help Center.

Atualizado

Isto foi útil?