Values in the body
The values block is used for updating one or more records of a specific business object.
Which records should be updated, is defined in the filter block. The to-be-updated values have to be listed in the values block.
Example
UsrReservationMeetingRoom BO: Updating the start and end time of a specific reservation:
{
"filter": {
"Description": {
"eq": "DEMO reservation"
}
},
"values": {
"BeginDateTime": {
  "date": "2022-12-22",
"time": "16:00:00"
},
"EndDateTime": {
"date": "2022-12-22",
"time": "17:00:00"
}
)
}