---
title: "Delete default system action binding by action id"
method: DELETE
path: "/api/v1/workflow/system/actions/{identifier}"
tags: ["Workflow"]
---

# Delete default system action binding by action id

`DELETE /api/v1/workflow/system/actions/{identifier}`

Deletes a [default system action](https://www.dotcms.com/docs/latest/managing-workflows#DefaultActions) binding.

Returns the deleted system action object.

This method is minimally destructive, as it neither deletes a [workflow action](https://www.dotcms.com/docs/latest/managing-workflows#Actions), nor removes any system action category. Instead, it dissolves the association between the two, which can be re-established any time.

To find a suitable identifier, you can use `GET /system/actions/{workflowActionId}` and find it in the immediate `identifier` property of any of the objects returned in the entity.

## Path parameters

- `identifier` string, required

## Response `200`

System action binding deleted successfully

- ResponseEntitySystemActionWorkflowActionMapping
  - `errors` ErrorEntity[]
    - `errorCode` string
    - `message` string
    - `fieldName` string
  - `entity` SystemActionWorkflowActionMapping
    - `identifier` string
    - `systemAction` 'NEW' | 'EDIT' | 'PUBLISH' | 'UNPUBLISH' | 'ARCHIVE' | 'UNARCHIVE' | 'DELETE' | 'DESTROY'
    - `workflowAction` WorkflowAction
      - `id` string
      - `name` string
      - `schemeId` string
      - `condition` string
      - `nextStep` string
      - `nextAssign` string
      - `icon` string
      - `roleHierarchyForAssign` boolean
      - `assignable` boolean
      - `commentable` boolean
      - `order` integer
      - `saveActionlet` boolean
      - `publishActionlet` boolean
      - `unpublishActionlet` boolean
      - `archiveActionlet` boolean
      - `pushPublishActionlet` boolean
      - `onlyBatchActionlet` boolean
      - `unarchiveActionlet` boolean
      - `deleteActionlet` boolean
      - `destroyActionlet` boolean
      - `moveActionlet` boolean
      - `commentActionlet` boolean
      - `metadata` object
      - `resetable` boolean
      - `nextStepCurrentStep` boolean
      - `moveActionletHashPath` boolean
      - `owner` string
      - `showOn` string[]
      - `hasOnlyBatchActionlet` boolean
      - `hasPublishActionlet` boolean
      - `hasUnpublishActionlet` boolean
      - `hasArchiveActionlet` boolean
      - `hasPushPublishActionlet` boolean
      - `hasUnarchiveActionlet` boolean
      - `hasDeleteActionlet` boolean
      - `hasDestroyActionlet` boolean
      - `hasCommentActionlet` boolean
      - `hasResetActionlet` boolean
      - `hasMoveActionletHasPathActionlet` boolean
      - `hasMoveActionletActionlet` boolean
      - `hasSaveActionlet` boolean
    - `owner` object
    - `ownerContentType` boolean
    - `ownerScheme` boolean
  - `messages` MessageEntity[]
    - `message` string
  - `i18nMessagesMap` object
  - `permissions` string[]
  - `pagination` Pagination
    - `currentPage` integer
    - `perPage` integer
    - `totalEntries` integer

## Other responses

- `401` — Invalid User
- `403` — Forbidden
- `404` — Workflow action not found
- `406` — Not Acceptable
- `500` — Internal Server Error

---

[API](https://skmtc.dev/jostens/apis/dotcms-rest-api.md) · [All operations](https://skmtc.dev/jostens/apis/dotcms-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/jostens/dotcms-rest-api/revisions/a088fe9f515c/schema)
