import cyberwave.rest
from cyberwave.rest.models.contact_form_schema import ContactFormSchema
from cyberwave.rest.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = cyberwave.rest.Configuration(
host = "http://localhost"
)
# Enter a context with an instance of the API client
with cyberwave.rest.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = cyberwave.rest.ContactApi(api_client)
contact_form_schema = cyberwave.rest.ContactFormSchema() # ContactFormSchema |
try:
# Contact Form
api_instance.src_app_api_contact_contact_form(contact_form_schema)
except Exception as e:
print("Exception when calling ContactApi->src_app_api_contact_contact_form: %s\n" % e)