Previous Page Next Page

With an appropriate Form Access Mode, data can also be queried.

Run Query

Add a request to the Postman collection.

  1. Rename it “DQL Query”
  2. Change “GET” to “PUT”
  3. Set the request URL to “{{HOST}}/query?action=execute&dataSource={{CONTACTS}}”.
  4. On the Headers tab, add a header “Content-Type” set to “application/json”.
  5. On the Body tab, select raw and enter:On the Body tab, select raw and enter:

     {
       "query": "form = 'Contact' and state = ?State",
       "maxScanDocs": 500000,
       "maxScanEntries": 200000,
       "timeoutSecs": 300,
       "viewRefresh": true,
         "noViews": false,
         "variables": {
           "State": "CA"
       }
     }
    
  6. Send the request.
Previous Page Next Page