# Brex Contact Enrichment Tool

**Use case:** 

Enrich Brex company records with email, title, seniority, location and LinkedIn fields exported as structured JSON.

## Input

```json
{
  "contacts": [
    {
      "name": "",
      "company": "Brex",
      "domain": "brex.com"
    }
  ],
  "findFields": [
    "email",
    "jobTitle",
    "seniority",
    "linkedinUrl",
    "location",
    "companyDomain"
  ]
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "company": {
    "label": "Company",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "emailStatus": {
    "label": "Email status",
    "format": "text"
  },
  "jobTitle": {
    "label": "Job title",
    "format": "text"
  },
  "seniority": {
    "label": "Seniority",
    "format": "text"
  },
  "linkedinUrl": {
    "label": "LinkedIn",
    "format": "link"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "companyDomain": {
    "label": "Company domain",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "link"
  },
  "confidence": {
    "label": "Confidence",
    "format": "text"
  },
  "observedAt": {
    "label": "Found at",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Tool: Contact Enrichment](https://apify.com/scrapers_lat/contact-enrichment-tool) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/contact-enrichment-tool) to learn more, explore other use cases, and run it yourself.