---
updatedAt: 2026-09-01T16:18:43.000Z
---

Fetch the complete documentation index at: https://developers.wabbit.gg/llms.txt. Use this file to discover all available pages before exploring further. Append .md to any documentation page URL to get its markdown version.

# Modify Status

# Modify Status

Jail, hospitalize (coma), or send a user on vacation (or clear a status)

> **Note:** Does not support targetUserId — always applies to the invoking user.

## Fields

| Field       | Type                           | Required | Description                                                                                                                                                                                  |
| ----------- | ------------------------------ | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `status`    | enum: jail \| coma \| vacation | yes      |                                                                                                                                                                                              |
| `operation` | enum: set \| clear             | yes      |                                                                                                                                                                                              |
| `duration`  | number (as string) or { path } | no       | Required when status is 'jail' and operation is 'set' (milliseconds). For 'vacation', this is days. Ignored for 'coma'. vacation+set additionally requires the target to have an active job. |

## Example

```json
{
  "id": "01H8XGJVBWX7Y5Z3K9M2N4P6Q1",
  "type": "modify_status",
  "status": "jail",
  "operation": "set",
  "duration": "60000"
}
```