# Submit a contact-sales enquiry

Source: https://docs.usetone.ai/reference/contact-sales/submit

> The public enquiry form behind usetone.ai.

`POST /v1/contact-sales`
The public enquiry form behind usetone.ai. No credential required.

## Request body

| Field | Type | | Meaning |
|---|---|---|---|
| `building` | string[] | optional | What you are building, in your own words. Free-form tags. |
| `companyName` | string | required | Your company name. |
| `companySize` | string | required | Roughly how many people work there. Open set — handle an unrecognised value rather than throwing. Today: `1-10`, `11-50`, `51-200`, `201-1000`, `1000+`. |
| `companyWebsite` | string | null | optional | Your company website, if you have one. |
| `details` | string | null | optional | Anything else worth knowing before we reply. |
| `email` | string | required | A work email we can reply to. |
| `firstName` | string | required | Your first name. |
| `lastName` | string | required | Your last name. |
| `lookingFor` | string[] | optional | What you want from Tone. Free-form tags. |
| `phone` | string | required | A phone number we can reach you on. |

### Example request

```json
{
  "building": [
    "Order confirmations"
  ],
  "companyName": "Acme Retail",
  "companySize": "11-50",
  "companyWebsite": "https://acme.example",
  "details": "We place about 5,000 COD confirmation calls a week.",
  "email": "priya@example.com",
  "firstName": "Priya",
  "lastName": "Sharma",
  "lookingFor": [
    "Outbound calling",
    "TRAI compliance"
  ],
  "phone": "+919876543210"
}
```

## Response



### Example response

```json
{
  "data": null
}
```
