Versions Compared

Key

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

...

...

...

Delete a single object

Code Block
languagejson
Delete /servicedmcore/CoreIdentity/20
Code Block
204 - No Conent

Mehrere Objekte löschen (Momentan nicht verfügbar)

...

Delete multiple objects (Currently not available)

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

Code Block
DELETE /servicedmcore/CoreIdentity?filter=or(Idid eq 1,Idid eq 2)
Code Block
languagejson
200 - OK (Alle löschungen erfolgreich)
207 - Multi-Status (Unterschiedliche Statuscodes in den Objekten)
??? - Alle Löschungen fehlerhaft mit dem StatusCode ??? (z.B: 401)
[
    {
        "Idid": 4,
        "statustype": "success",
        "status": 204,
        "value": null
    },
    {
        "Idid": 5,
        "statustype": "success",
        "status": 204,
        "value": null
    },
    {
        "Idid": 6,
        "statustype": "success",
        "status": 204,
        "value": null
    }
]