Skip to main content
POST
/
contact-sales
Submit a Contact Sales form
curl --request POST \
  --url http://localhost:3000/contact-sales \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "interest": "custom",
  "workEmail": "jsmith@example.com",
  "companySize": "1-10",
  "companyName": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "phoneNumber": "<string>",
  "turnstileToken": "<string>",
  "businessNeeds": "<string>"
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
interest
required
Available options:
custom
workEmail
string<email>
required
companySize
required
Available options:
1-10
companyName
string
required
Minimum string length: 1
firstName
string
required
Minimum string length: 1
lastName
string
required
Minimum string length: 1
phoneNumber
string
required
Minimum string length: 1
turnstileToken
string
required
Minimum string length: 1
businessNeeds
string

Response

Default Response

message
string
required