> ## Documentation Index
> Fetch the complete documentation index at: https://docs.asobeast.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Change the state of one action



## OpenAPI

````yaml /api-reference/openapi.json patch /actions/{id}
openapi: 3.0.0
info:
  title: asobeast API
  description: Self hosted ASO toolkit API
  version: 0.4.0
  contact: {}
servers:
  - url: http://localhost:3000/api/backend
    description: Web origin proxy
  - url: http://localhost:4000
    description: Direct API
security:
  - personalApiToken: []
tags: []
paths:
  /actions/{id}:
    patch:
      tags:
        - actions
      summary: Change the state of one action
      operationId: ActionsController_update
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateActionDto'
      responses:
        '200':
          description: The updated action
components:
  schemas:
    UpdateActionDto:
      type: object
      properties:
        status:
          enum:
            - OPEN
            - SNOOZED
            - DONE
            - DISMISSED
          type: string
        snoozedUntil:
          type: string
          example: '2026-08-15T00:00:00.000Z'
        note:
          type: string
          maxLength: 500
      required:
        - status
  securitySchemes:
    personalApiToken:
      scheme: bearer
      bearerFormat: asob
      type: http

````