0
Rest API works fine but not possible to find some values
it is possible to search the complete database for an entry. For example I would like to see all data of my customer "XY".
like in SQL
Select * from database where "Customer" like "XY"
1 reply
-
Try single quotes around customer:
Select * from database where 'Customer' like "XY"
Content aside
- 4 yrs agoLast active
- 1Replies
- 499Views