Previous Page Next Page

Accessing Lists

In the Setup part we created two lists, one of all customers and the other of active customers.

Get All Customers

  1. Hover over the Domino-REST-API-NewDB collection name and click on the ellipsis (three dots). Select Add Request.
  2. Name the request get customers and click Save.
  3. Set the URL as {{HOST}}/lists/Customers?dataSource=customers.
  4. Set the headers for Authorization.
  5. Click Send.
  6. Save and close the request.

You will receive a list of entries for all customers, with name, category and address.

Get Active Customers

  1. Hover over the Domino-REST-API-NewDB collection name and click on the ellipsis (three dots). Select Add Request.
  2. Name the request get active customers and click Save.
  3. Set the URL as {{HOST}}/lists/Active%20Customers?dataSource=customers.
  4. Set the headers for Authorization.
  5. Click Send.
  6. Save and close the request.

You will receive a list of entries for active customers, this time with just name and category.

Previous Page Next Page