POST
/
enrichments
/
contacts
Buscar contatos
curl --request POST \
  --url https://exact.ws/enrichments/enrichments/contacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "webhook_url": "<string>",
  "company_name": "<string>",
  "company_id": "<string>",
  "contact_name": "<string>",
  "keywords": []
}'
{
  "id": "<string>",
  "status": "COMPLETED",
  "data": {
    "contacts": []
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
company_name
string
required

Nome da empresa

webhook_url
string | null
company_id
string | null

CNPJ da empresa

contact_name
string | null

Nome do contato

keywords
string[]

Palavras-chave para pesquisa (posição, setor e afins)

Response

Request fulfilled, document follows

id
string
required
data
object
required

Resultado da execução do workflow

status
string
default:COMPLETED

Situação do workflow (completo)

Allowed value: "COMPLETED"