> For the complete documentation index, see [llms.txt](https://docs.skylinebridge.tech/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.skylinebridge.tech/web-api/contact.md).

# Contact

## Submit a contact message

> Allows users to send a contact message by providing their name, email, and message.

```json
{"openapi":"3.0.0","info":{"title":"Web API","version":"1.0"},"paths":{"/contact":{"post":{"operationId":"ContactController_submitContactForm","summary":"Submit a contact message","description":"Allows users to send a contact message by providing their name, email, and message.","parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateContactDto"}}}},"responses":{"200":{"description":"OK - Message submitted."}},"tags":["Contact"]}}},"components":{"schemas":{"CreateContactDto":{"type":"object","properties":{"name":{"type":"string","description":"Full name of the user submitting the message"},"email":{"type":"string","description":"Email address of the user submitting the message","format":"email"},"message":{"type":"string","description":"Message to be submitted"}},"required":["name","email","message"]}}}}
```
