DELETE
/
delivery_item
/
many
Delete multiple delivery_items
curl --request DELETE \
  --url http://localhost:8080/delivery_item/many \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "ids": [
    "<string>"
  ]
}'
{
  "message": "Delivery_items deleted successfully",
  "deletedCount": 123
}

Authorizations

x-api-key
string
header
required

API key for authentication. Contact your administrator to get an API key.

Body

application/json

Response

Successfully deleted delivery_items

The response is of type object.