Language: Deutsch · English
Modify a BO via REST – PUT on self, subforms via subBos insert/update/delete.
HOW-TO DEVELOPER STAND: JUL 2026 GILT FUER NUCLOS 4.2026.X
Auf dieser Seite
A record read earlier can be modified via PUT on the self link – attributes are edited as when creating (data types see meta information).
For performance reasons, subforms are not read with the BO but via their own links. Changes are passed in the object JSON under subBos with insert/update/delete per reference attribute:
"subBos": {
"insert": {
"{refAttrId}": [
{ "boId": null, "boMetaId": "{boMetaId}", "attributes": { ... } }
]
},
"update": {
"{refAttrId}": [
{ "boId": 123, "boMetaId": "{boMetaId}", "attributes": { ... } }
]
},
"delete": { "{refAttrId}": [ 456 ] }
}ids of the rows to delete.