Sie zeigen eine alte Version dieser Seite an. Zeigen Sie die aktuelle Version an.

Unterschiede anzeigen Seitenhistorie anzeigen

Version 1 Nächste Version anzeigen »

globe with meridians Language: Deutsch · English

hammer and wrench 6. Modifying a business object (BO)

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).

Subforms

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:

Fehler beim Rendern des Makros 'code': Ungültiger Wert für den Parameter 'com.atlassian.confluence.ext.code.render.InvalidValueException'
"subBos": {
  "insert": {
    "{refAttrId}": [
      { "boId": null, "boMetaId": "{boMetaId}", "attributes": { ... } }
    ]
  },
  "update": {
    "{refAttrId}": [
      { "boId": 123, "boMetaId": "{boMetaId}", "attributes": { ... } }
    ]
  },
  "delete": { "{refAttrId}": [ 456 ] }
}
  • insert: new rows like a normal BO (via a blank).
  • update: append only the changed rows – unchanged ones need not be sent.
  • delete: only the ids of the rows to delete.

Related pages

gear 7. Deleting a business object (BO)


Delete.

Öffnen →

gear 5. Creating a business object (BO)


Create.

Öffnen →

  • Keine Stichwörter