Skip to main content

ContactFormRequest Service

Description

This service is used to simplify entering basic web forms into Atollon. In Atollon, it's possible to add more complex business logic based on request type and it's parameters. Web developers are let go of understanding Atollon blacbox.

Request

POST https://<HOST>/crab/contact_form/<request_type>

Request Types

General

https://<HOST>/crab/contact_form/general

POST data in JSON format:

{
    "person": {
        "name": <jmeno>,
        "surname": <prijmeni>
    },
    "company": {
        "name": <nazev_firmy>,
    },
    "contacts": {
        "email": <email>,
        "phone": <telefon>
    },
    "comment": <text_pozadavku>
}