Skip to main content
GET
/
contact
[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "John Doe",
    "email": "[email protected]",
    "subject": "Question about Enterprise Plan",
    "message": "I would like to know more about your enterprise plan features...",
    "contacted": false,
    "admin_notes": "User was contacted via email on 2025-03-15",
    "createdAt": "2025-03-15T10:30:00Z",
    "updatedAt": "2025-03-15T14:45:00Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

contacted
boolean

Filter by contacted status

limit
number

Items per page (default: 10)

page
number

Page number (default: 1)

Response

200 - application/json

Returns all contact submissions

id
string
required

Unique identifier for the contact submission

Example:

"123e4567-e89b-12d3-a456-426614174000"

name
string
required

Name of the person who submitted the contact form

Example:

"John Doe"

email
string
required

Email address of the person who submitted the contact form

subject
string
required

Subject of the contact message

Example:

"Question about Enterprise Plan"

message
string
required

Content of the contact message

Example:

"I would like to know more about your enterprise plan features..."

contacted
boolean
required

Flag indicating if admin has contacted the user

Example:

false

admin_notes
string | null
required

Admin notes about the contact request

Example:

"User was contacted via email on 2025-03-15"

createdAt
string<date-time>
required

Date and time when the contact form was submitted

Example:

"2025-03-15T10:30:00Z"

updatedAt
string<date-time>
required

Date and time when the contact record was last updated

Example:

"2025-03-15T14:45:00Z"