Custom Form Data Searching
The following will outline the process of searching custom form data within the system.
Search Custom Forms By Id
Before beginning the process of searching custom form data, you should use the following search to acquire information about the form.This first endpoint will return an array of all active forms in the organization. (True is the boolean value for active in this url).
GET https://securelb.trackerproducts.com/api/forms/all/true The response will return some pertinent information about the form including the schema.
Image title
Note the form id and the modelTypeId. The id will be used later in searching, and the model type is important so that the search is run against the correct entity - case, item, or person.
In order to see the model types, use this endpoint:
GET https://securelb.trackerproducts.com/api/modelTypes
This returns an array of model types used throughout the system.
Image title