Hallo kann mir jemand genau schrieben wie ich ein Artikel in SW5 über die REST API lösche ?
Das Beispiel:
DELETEAnchor link for: delete
The product(s) to delete can be defined using the following syntax:
IdentifierParameterDB columnExample callArticle Idids_articles.id/api/articles/2
DELETE (Stack)Anchor link for: delete (stack)
In order to delete more than one product at once, it’s possible to provide an array of objects with ids or product numbers to the REST API. Simply pass the array of objects to the following URL (example)
- [DELETE] http://my-shop-url/api/articles/
without providing an id as seen in the single DELETE
request.
ExampleAnchor link for: example
-
Deletes product with id 1 and product with number SW00002
[
{“id”: 1},
{“mainDetail”:
{
“number”: “SW00002”
}
}
]
Das Beispiel verstehe ich nicht
https://developers.shopware.com/developers-guide/rest-api/api-resource-article/
PS. Am liebsten möchte ich auch nur die Ordernummer angeben… Woher soll ich denn die ID wissen
Wenn ich 100 Artikelnummern löschen soll, kann ich doch nicht die ID’s nachsehen, dann kann ich das gleich per Hand löschen…