Skip to content

Send Contact Message

POST
/contact
curl --request POST \
--url https://api.mengi.cloud/contact \
--header 'Content-Type: application/json' \
--data '{ "email": "hello@example.com", "message": "example" }'

Send a contact message to the Mengi Cloud team.

This endpoint is public and does not require authentication.

Media type application/json
ContactRequest
object
email
required
Email
string format: email
message
required
Message
string
Example generated
{
"email": "hello@example.com",
"message": "example"
}

Successful Response

Media type application/json
ContactResponse
object
success
required
Success
boolean
message
required
Message
string
Example generated
{
"success": true,
"message": "example"
}

Validation Error

Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}