Next question... is there a way to restrict the attributes being returned by the exposed web service?
For example, here is the web service response below, is there a way in Aware, to just return the Name and Body attributes?
Currently I'm using an implementing process that is just:
FIND Alert WHERE Alert.StaffKey=ThisGetAlerts.StaffKey
And it is returning:
{
"response": [
{
"Name": "New Products",
"Viewed": "No",
"StaffKey": "aaa111",
"Type": "News",
"Number": 1,
"Body": "There are lots of new products coming soon"}
,
{
"Name": "Customer Complaint",
"Viewed": "No",
"StaffKey": "aaa111",
"Type": "Complaint",
"Number": 2,
"Body": "You have a new complaint case xyz"}
,
{
"Name": "Training Change",
"Viewed": "No",
"StaffKey": "aaa111",
"Type": "Training",
"Number": 3,
"Body": "There has been a change in training event location tonight. The new address is: \n123 Main Street \nSydney NSW 2000 \nPlease be there at 1pm sharp."}
]
}