---
title: "Update an action"
method: PATCH
path: "/actions/{actionId}"
tags: ["Actions"]
---

# Update an action

`PATCH /actions/{actionId}`

Partially update an action's name, description, or params; all fields are optional. Returns 404 if the action does not exist.

## Path parameters

- `actionId` string, uuid, required

## Request body

- UpdateActionBody
  - `name` string
  - `description` string
  - `params` object

## Response `200`

Action updated

- object
  - `data` Action, required
    - `id` string, uuid, required
    - `userId` string, uuid, required — Deprecated: use ownerId (tenancy) / createdBy (actor).
    - `ownerId` string, uuid, required
    - `createdBy` string, uuid, nullable, required
    - `catalogEntryId` string, uuid, required
    - `name` string, required
    - `description` string, nullable, required
    - `service` 'tasks_api' | 'devices_api' | 'agents_api' | 'webhooks', required
    - `method` string, required
    - `params` unknown
    - `paramsSchema` unknown
    - `createdAt` string, nullable, required
    - `updatedAt` string, nullable, required

## Other responses

- `404` — Not Found

## Changes

- **2026-07-07** `d5d1e5ee8188` — 3 info
  - response property `data/userId` deprecated
  - added the required property `data/createdBy` to the response with the `200` status
  - added the required property `data/ownerId` to the response with the `200` status
- **2026-06-29** `8f06726ac240` — 1 breaking
  - the request property `params/additionalProperties/` became not nullable
- **2026-06-28** `fd8fb6b29e38` — 1 info
  - endpoint added
- **2026-06-27** `99b4ade46263` — 1 breaking
  - api path removed without deprecation
- **2026-06-19** `7f577998739b` — 1 info
  - endpoint added

[Full history](https://skmtc.dev/droidrun/apis/droidrun-cloud/changes/actions/:actionId/patch.md)

---

[API](https://skmtc.dev/droidrun/apis/droidrun-cloud.md) · [All operations](https://skmtc.dev/droidrun/apis/droidrun-cloud/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/droidrun/droidrun-cloud/revisions/a1453ac769d4/schema)
