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
Lead
https://<HOST>/crab/contact_form/lead
POST data in JSON format:
{
"person": {
"name": <jmeno>,
"surname": <prijmeni>
},
"company": {
"name": <nazev_firmy>,
},
"contacts": {
"email": <email>,
"phone": <telefon>
},
"comment": <text_pozadavku>,
"interested_in": [<p1>, <p2>, ... ],
}