---
id: approval-action-delete
title: "Delete an action"
description: "Permanently removes an approval action. This action cannot be undone.'"
sidebar_label: "Delete an action"
hide_title: true
hide_table_of_contents: true
api: eJzdVk2P2zYQ/SvEnBJAtb1fF93c7BbdoodF4kUDrBeLsTi2mFCkQo6cdQ3992Ao2Svbi6YF+gHUB1qihpw3b+aRswVNsQimZuMd5HBHoUJHju1GBar8mqJCp7Cug1+jVViI4UjNShP7F1Wgc57VglTjtHc0msPcQQa+poBicashh90WT92qXJMlJsiAcRUhf4BpmofHDGoMWBFTkPktGAFWI5eQgcOKIAejIYNYlFQh5FvgTZ1mHdOKArQZBPrSmEAacg4NZUdRzkpSt9fKLxWXdBIcZEDPWNWWID87v7hsHzOIVDTB8CYBWhAGCtOGS8gfHuVzoFh7FykKmvPJRP5OXe4JUV8xqtgUBcW4bKx4LLxjciwLsa6tKZLh+FOU1dtBrHWQbdh0vvpNBiQsvLeEwv8hgFunZVOK6mtJXFJIsf8RpD0JQmGbfhlcfvx4Gtw7a8ixohB8UHsulG5IsVfGrdEarYyrG1Y+qMrEaNxKveT5LzHQB+oXn6hgGOb6ASIjN/Gd11JZCQ9kUFGMuKJUWofsvVifVtExgT/PZneqW6EKr0kFqgNFciyxCJmxpsIsTaGKIR9vaLQaZepyMpHhTIYLGS7fHpB8OZm0QsIBlsjBuNUJlKmqsCiNox8CocaFpd5XwsUlspJUr3wwv1PssFFYU1BLNLYJdOAZFqifhESKLNrpaPsTIBbB0DJTZVOhe0EysNoprAMn2+3YmMOPqNX7zukcZOLeYcNlgqzncEjO0Fog7jL6fZBaG3lEqzQxGhsVLnzDL7AO/YhMeyqSIiq0Sx8q0iqx6xiNI70v6WEF7xRy9ZpCPnT0HyvEdKKUAkKnTIwNKe8SuOndrYpG0/9MGnFIRF8MVyKNq8m5DBeHib/671QhwQaH9qkzeuoo+9f0cdu7V33p3IhNpxSZMQWpe4drNFZ2PRHMq8v/UelMnWocPddUMOk+JF8UTQikR+rOEkZSHDYKV2icssgUdqpJuLj00ijsG4N05ecw3t3P4+5+Hm+NbuX6T4F1LUITLORQMtcxH4+xNiPXWFtbZFHvqPAVDG/xDyKYrs6Hd/meEdlo12CkAzIZQdY//ORDhQw5/PLbDAS7cUsvywVPR97ZaDKaSHNjuCOnj0EyUPvIFSbl9u3MdQo5NVpdE3SUi+3LCfC3dmh9uEzPPK4tGifwEpfbnv2Hfd8GGezB5UbLiVH6yGKy3S4w0n2wbSvTXxoK0ig9ZrDGYKQ8U5K0ifKsIV+ijcdN2TDGN+/7c+ut+m6r9moM/SS6DQgI28gbZPCZNl332D62GZSEmkLC1n2YFgXVPFhyctpKFe0r9frm15vZjRBzWD5H5ZIcvIpou+0sZv4zubbdA2R5F4xt+w27XQbi
sidebar_class_name: "delete api-method"
info_path: docs/api/approval
custom_edit_url: null
---

import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint";
import ParamsDetails from "@theme/ParamsDetails";
import RequestSchema from "@theme/RequestSchema";
import StatusCodes from "@theme/StatusCodes";
import OperationTabs from "@theme/OperationTabs";
import TabItem from "@theme/TabItem";
import Heading from "@theme/Heading";

<Heading
  as={"h1"}
  className={"openapi__heading"}
  children={"Delete an action"}
>
</Heading>

<MethodEndpoint
  method={"delete"}
  path={"/approval/action/{id}"}
  context={"endpoint"}
>
  
</MethodEndpoint>



Permanently removes an approval action. This action cannot be undone."


<Heading
  id={"request"}
  as={"h2"}
  className={"openapi-tabs__heading"}
  children={"Request"}
>
</Heading>

<ParamsDetails
  parameters={[{"in":"path","name":"id","schema":{"type":"integer"},"required":true,"description":"The ID of the approval action.","example":1234}]}
>
  
</ParamsDetails>

<RequestSchema
  title={"Body"}
  body={undefined}
>
  
</RequestSchema>

<StatusCodes
  id={undefined}
  label={undefined}
  responses={{"200":{"description":"The operation was successful.","content":{"application/json":{"schema":{"properties":{"success":{"type":"boolean","description":"Indicates whether the operation was successful.","example":true}}}}}},"4XX":{"description":"Client error responses due to invalid input or missing parameters.","content":{"application/json":{"schema":{"type":"object","required":["statusCode","error","message"],"properties":{"statusCode":{"type":"integer","description":"HTTP status code representing the specific client error (e.g., 400, 401, 403, 404).","example":400},"code":{"type":"string","description":"A machine-readable error code that categorizes the server failure.","example":"bad_request"},"error":{"type":"string","description":"A brief, human-readable description of the error type (e.g., \"Bad Request\", \"Unauthorized\").","example":"Bad Request"},"message":{"type":"string","description":"Additional details about the error.","example":"The request was malformed or contained invalid parameters."}}}}}},"5XX":{"description":"Server error responses indicating an issue on the API side.","content":{"application/json":{"schema":{"type":"object","required":["statusCode","error","message"],"properties":{"statusCode":{"type":"integer","description":"HTTP status code representing the specific server error (e.g., 500, 502, 503).","example":500},"code":{"type":"string","description":"A machine-readable error code that categorizes the server failure.","example":"internal_server_error"},"error":{"type":"string","description":"A brief, human-readable description of the error type (e.g., \"Internal Server Error\", \"Service Unavailable\").","example":"Internal Server Error"},"message":{"type":"string","description":"Additional details about the error.","example":"An unexpected error occurred. Please try again later."}}}}}}}}
>
  
</StatusCodes>


      