Maintenance

Bulk delete contentlets by identifier

Permanently destroys contentlets and all their language siblings. Bypasses trash. Each contentlet is destroyed independently — one failure does not block others.

delete/api/v1/maintenance/_contentlets

Request body

identifiersstring[] required

List of contentlet identifiers. All language siblings of each identifier will be permanently destroyed.

Example request

{
  "identifiers": [
    "abc123",
    "def456",
    "ghi789"
  ]
}

Response

Bulk deletion completed

i18nMessagesMapobject
permissionsstring[]

Example response

{
  "entity": {
    "deleted": 6
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.