Listing and Retrieving

Home » Support Library » Developer Support » RESTFul Guidelines » Listing and Retrieving
  • For retrieving single record we use GET method with resource name and suffix the record id
    • Example: GET: /case-files/123 – return case file with id = 123
  • For listing all records we use GET method with resource name
    • Example: GET: /case-files – this should return all case files