Skip to main content
POST
/
v1
/
contact-submissions
Create Contact Submission Route
curl --request POST \
  --url https://api.example.com/v1/contact-submissions \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "email": "<string>",
  "company": "<string>",
  "interested_products": [
    "<string>"
  ],
  "how_did_you_hear": "<string>"
}
'
{
  "data": {
    "ticket_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  },
  "success": true
}

Body

application/json
name
string
required
Required string length: 1 - 255
email
string
required
Required string length: 1 - 255
company
string | null
Maximum string length: 255
interested_products
string[] | null
how_did_you_hear
string | null
Maximum string length: 255

Response

Successful Response

data
ContactSubmissionCreatedData · object
required
success
boolean
default:true