Skip to content
Esc
navigateopen⌘Jpreview
Book a demo

Submit form

POST/v1/forms/{id}
Path parameters
idstringrequired
Request body
requiredapplication/json
customerobjectrequired
Show properties
phoneNumberstring
emailstring
firstNamestring
lastNamestring
propertiesobject
fieldsobject[]required
Show properties
Array of object
namestringrequired
valuestring | number | boolean | object | any[]required
Show properties
One of:
string
string
number
number
boolean
boolean
object
object
any[]
Array of any
metadataobject
Responses
201Successful submission
submissionstring
Request
curl -X POST "https://api.sendhelios.com/v1/forms/string" \
  -H "Content-Type: application/json" \
  -d '{
  "customer": {
    "phoneNumber": "string",
    "email": "string",
    "firstName": "string",
    "lastName": "string",
    "properties": {}
  },
  "fields": [
    {
      "name": "string",
      "value": "string"
    }
  ],
  "metadata": {}
}'
Response
{
  "submission": "string"
}