Skip to main content
POST
/
v1
/
public-user
/
contact-us
Create a contact us message
curl --request POST \
  --url https://api.example.com/v1/public-user/contact-us \
  --header 'Content-Type: application/json' \
  --header 'x-ws-api-key: <api-key>' \
  --data '
{
  "name": "John Doe",
  "email": "[email protected]",
  "message": "I would like to inquire about your services.",
  "company": "Acme Corp"
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.wattshift.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-ws-api-key
string
header
required

Headers

x-ws-api-key
string

WattShift API Key

Body

application/json
name
string
required

Full name of the person

Example:

"John Doe"

email
string<email>
required

Email address

message
string
required

Contact message

Example:

"I would like to inquire about your services."

company
string

Company name (optional)

Example:

"Acme Corp"

Response

Contact message created successfully