Values
The values block specifies the data used to update one or more records of a specific business object. The filter block defines which records are updated. The fields and values to be updated must be specified in the values block.
--- EXAMPLE ---
{
"filter" : {
"Code" : {"eq" : "P000000445"}
},
"values" : {
"BeginDateTime": {
"date": "2022-12-22",
"time": "16:00:00"
},
"EndDateTime": {
"date": "2022-12-22",
"time": "17:00:00"
}
},
"answers" : {},
"arguments" : {}
}
Special Value feature for reference fields
The LOOKUP feature is also supported in value expressions. To use it, prefix the expression with a $ sign. See fhe following example:
{
"filter": {
"PropertyRef": {"eq": "356"}
},
"values": {
"FirstName": 'Aaron',
"LastName": 'Mann',
"FacilityNetUsername": 'TC',
"$PropertyRef": 'OBJ371'
}
}