Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Update a single object

Code Block
languagejson
PATCH /servicedmcore/CoreIdentity/20
{
	"foreign_id": "TestForeignId",
	"ci_family_name": "Testikus",
	"ci_given_name": "Hansueli"
}
Code Block
204 - No Conent

Mehrere Objekte aktualisieren

...

Update multiple objects

Multiple objects can be uptaded at once. For this purpose, a select filter can be provided, which selects the objects to be edited.

Code Block
PATCH /servicedmcore/CoreIdentity?filter=ci_zip_code eq 5000
{
	"ci_city": "Aarau"
}

...