Previous Page Next Page

Create Contact Form

  1. Hover over the customer form request and click on the ellipsis (three dots). Select Duplicate.
  2. Open the duplicated request named customer form Copy, rename it to contact form and click Save.
  3. Change the URL to {{SETUP_HOST}}/design/forms/Contact?nsfPath=customers.nsf.
  4. On the Body tab set the request body content to:

     {
       "name": "Contact",
       "alias": "",
       "fields": [
         {
           "name": "first_name",
           "type": "text",
           "allowmultivalues": false
         },
         {
           "name": "last_name",
           "type": "text",
           "allowmultivalues": false
         },
         {
           "name": "customerUNID",
           "type": "text",
           "allowmultivalues": false
         },
         {
           "name": "job_title",
           "type": "text",
           "allowmultivalues": true
         },
         {
           "name": "email",
           "type": "text",
           "allowmultivalues": false
         },
         {
           "name": "phone",
           "type": "text",
           "allowmultivalues": false
         }
       ]
     }
    
  5. Click Send to make the request.
  6. Save and close the request.

Congratulations!

This request has:

  • Created the Contact form in the customers database.
Previous Page Next Page