Hello,
is there a way to find an element that has a specific value in one of the form fields using the WebCon API?
Thanks for help!
Hello,
is there a way to find an element that has a specific value in one of the form fields using the WebCon API?
Thanks for help!
Hi,
Try PublicApiSearch
Path (GET)
/api/data/v5.0/db/{dbId}/applications/{idguid}/search
I have created a query with the filter: AttText9:testSearch
and in the response I got the data of the element that contained this string.
Regards.
Hi,
Another option is to use the Odata API.
Path(GET)
/api/odata/beta/db/{dbId}/{processName}_{processId}?$filter={attributeName}_{attributeId} eq '{value}'
And with sample data: /api/odata/beta/db/1/OData_14?$filter=TextAtt_356 eq 'sampleValue'