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

# Replay stuck work

> Sends the stuck tasks back with fresh attempts; an erasure resumes where it stopped. Leaves an admin receipt.



## OpenAPI

````yaml openapi/en/cell.json POST /v1/operations/dead-tasks/replay
openapi: 3.1.0
info:
  title: Niadra data API
  version: '1'
  description: >-
    Writing, context, history, objects, identity, privacy and governance of one
    space. Every space has a stable address, with the space and the region in
    its name.
servers:
  - url: https://{space}.{region}.api.niadra.com
    variables:
      space:
        default: acme-prod
        description: The space, which comes in the source key.
      region:
        default: us-east-2
        description: The region of the space, which also comes in the key.
security: []
paths:
  /v1/operations/dead-tasks/replay:
    post:
      tags:
        - operate
      summary: Replay stuck work
      description: >-
        Sends this space's buried tasks back with fresh attempts: a failed
        erasure resumes where it stopped,

        since each step is idempotent. Leaves an `admin` receipt.


        **Authentication.** Console person token with the `security` role (or
        admin), or a source key with the `admin` scope.
      operationId: replay_dead_tasks_v1_operations_dead_tasks_replay_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReplayRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReplayResult'
          description: How many tasks went back to the queue.
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
          description: The request does not match the contract.
      security:
        - sourceKey: []
        - personToken: []
components:
  schemas:
    ReplayRequest:
      additionalProperties: false
      properties:
        task:
          anyOf:
            - type: string
            - type: 'null'
          description: Only tasks of this name, e.g. `erase`; all when absent.
          title: Task
      title: ReplayRequest
      type: object
    ReplayResult:
      additionalProperties: false
      properties:
        replayed:
          title: Replayed
          type: integer
      required:
        - replayed
      title: ReplayResult
      type: object
    Problem:
      additionalProperties: false
      description: RFC 9457 problem details; `code` comes from the versioned error catalog.
      properties:
        code:
          title: Code
          type: string
        detail:
          anyOf:
            - type: string
            - type: 'null'
          default: null
          title: Detail
        request_id:
          anyOf:
            - type: string
            - type: 'null'
          default: null
          title: Request Id
        status:
          title: Status
          type: integer
        title:
          title: Title
          type: string
        type:
          default: about:blank
          title: Type
          type: string
      required:
        - title
        - status
        - code
      title: Problem
      type: object
  securitySchemes:
    sourceKey:
      type: http
      scheme: bearer
      description: nia_sk_...
    personToken:
      type: http
      scheme: bearer
      bearerFormat: JWT

````