Skip to main content
POST
/
contact
Submits a contact form.
curl --request POST \
  --url https://api.leadping.ai/contact \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "email": "<string>",
  "message": "<string>",
  "token": "<string>"
}
'
{
  "message": "<string>"
}

Body

The contact form data to submit.

Request model for submitting a contact form.

name
string | null

The human-readable name shown for this contact.

email
string

The email address associated with this contact.

message
string

The message value for this contact.

token
string

The token supplied to authorize or complete this contact.

Response

Contact form was successfully submitted.

Response model for contact form submissions.

message
string

The message value for this contact.