---
title: "Batch complete tasks"
method: POST
path: "/v3/tasks/batch/complete"
tags: ["Tasks"]
---

# Batch complete tasks

`POST /v3/tasks/batch/complete`

<small>_Requires the `tasks:operate` scope (or a broader one that includes it)._</small>

Completes multiple tasks without execution. Non-atomic — some may succeed while others fail.
Items not in the response dictionary succeeded.

## Request body

- object — Request body for batch completing tasks (without execution).
  - `ids` integer[], required — Task IDs to complete (1-100).

## Response `200`

Dictionary of failed items keyed by task ID. Empty object `{}` means all succeeded.

Possible per-item error codes:

| code | Meaning |
|------|---------|
| `notFound` | Task does not exist or caller lacks permission to complete it |
| `cannotComplete` | Task is already finished or in an invalid state |

- object

## Other responses

- `400` — Validation failure on the request body (missing/unparseable body, `ids` empty or > 100 items, any ID not a positive integer).
- `401` — Unauthorized. The response body is empty; check the `WWW-Authenticate` header for the expected scheme.
- `403` — User lacks required feature scope to complete tasks
- `429` — Too Many Requests

---

[API](https://skmtc.net/reply/apis/reply-api.md) · [All operations](https://skmtc.net/reply/apis/reply-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/reply/reply-api/revisions/1c3d32eaf95e/schema)
