Batch Delete Places
POST/api/places/batchdeleteplaces
Tier: Public — stable, supported for third-party integration.
Soft-deletes a batch of places, one PlaceController.DeletePlace(...) call per id.
Deletion is not all-or-nothing: places are deleted one at a time, so any deletes that succeeded before a later failure remain deleted even though the overall response is a 400.
Request
Responses
- 200
- 400
- 401
- 403
true — every place in the batch was deleted successfully.
Any single place's delete failed — accumulated error array from that failure (see PlaceController.DeletePlace(...)); earlier successful deletes in the same batch are not rolled back.
Caller is not authenticated.
Caller does not have Delete permission on the Place module.