POST
/
enrichments
/
emails
Encontrar emails
curl --request POST \
  --url https://exact.ws/enrichments/enrichments/emails \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "webhook_url": "<string>",
  "name": "<string>",
  "domain_name": "<string>"
}'
{
  "id": "<string>",
  "status": "COMPLETED",
  "data": {
    "emails": []
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required

Nome do contato

domain_name
string
required

Domínio

webhook_url
string | null

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"