> For the complete documentation index, see [llms.txt](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/client/update-mechanic-request-status.md).

# Update Mechanic Request Status

Use the endpoint allows the mechanic to update the status of a request. You must provide the unique `request_status_id`and the `new_status` value in the request body.

***

#### Parameters

**Request Body:**

| Name                | Type   | Description                                    | Required |
| ------------------- | ------ | ---------------------------------------------- | -------- |
| `request_status_id` | string | The unique ID of the request status to update. | Yes      |
| `new_status`        | string | The new status to set for the request.         | Yes      |

**Example Request Body:**

```json
{
  "request_status_id": "12345",
  "new_status": "accepted"
}
```
