Skip to main content
POST
/
user
/
contact-us
Contact Us
curl --request POST \
  --url https://api.decodahealth.com/user/contact-us \
  --header 'API-KEY: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'TENANT: <tenant>' \
  --data '
{
  "firstName": "<string>",
  "lastName": "<string>",
  "phoneNumber": "<string>",
  "message": "<string>"
}
'
true

Headers

TENANT
string
required

The tenant you are making this request on behalf of

API-KEY
string
required

Your api key

Body

application/json
firstName
string | null

The user's first name.

lastName
string | null

The user's last name.

phoneNumber
string | null

The user's phone number.

message
string | null

The user's message.

Response

Successful Response

The response is of type boolean.