Company check

This endpoint is used to create a company background check or company credit history check.

POST https://api.zapsign.com.br/api/v1/checks/

Nombre
Tipo
Descripción

Authorization*

string

API token prefixed with the word "Bearer". Example: Bearer c7f35c84-xxxx

Reqeust Body

Nombre
Tipo
Descripción

country*

string

BR | CO | MX . Más detalle de consultas disponibles haz clic aqui

type*

string

Type of check: company", "credit_company_co", "credit_company_br". Click here for more details.

user_authorized*

boolean

Indicates whether the company authorized the check. Must be true to proceed.

force_creation

boolean

If true, forces the creation of a new background check even if a result already exists. If false, returns the previously created check result if available.

tax_id*

string

Official company identification number (e.g., RUT, CNPJ, RFC).

company_name

string

Company name. If provided, international databases will be consulted for more detailed results.

observers

array<string>

Represents background check observers (limit 20), i.e. email addresses that will be notified when the background check is completed. It's an array of strings.

Request

{
    "user_authorized": true,
    "force_creation": true,
    "type": "company",
    "country": "CO",
    "taxl_id": "11111111"
}

Response

{
    "check_id": "CHK682a755bb7135140248cc8dd1d290a01",
    "status": "not_started",
    "company_name": "",
    "full_name": "",
    "first_name": "",
    "last_name": "",
    "date_of_birth": null,
    "issue_date": null,
    "national_id": "",
    "foreign_id": "",
    "tax_id": "1111111",
    "country": "CO",
    "native_country": "",
    "check_type": "company",
    "lang": "es",
    "region": "",
    "created_at": "2025-03-28T17:49:43.363416Z",
    "last_update_at": "2025-03-28T17:49:43.363435Z"
}

Reminder: The results of a check may take between 2 and 20 minutes. To retrieve the results, you can use:

Last updated

Was this helpful?