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

# Reprioritize active horizon agent

> Accepted — reprioritize signalled to the active-horizon agent.

### Path parameters

<ParamField path="workflow_id" type="string (string)" required />

### Request body

`ActiveHorizonReprioritizeInput`

<ParamField body="task_ids" type="string[]" required />

### Response

No response body. Accepted — reprioritize signalled to the active-horizon agent.

### Status codes

| Code  | Meaning                                                        |
| ----- | -------------------------------------------------------------- |
| `202` | Accepted — reprioritize signalled to the active-horizon agent. |
| `400` | Validation error                                               |
| `401` | Unauthorized                                                   |
| `404` | Not found                                                      |
| `429` | Rate limited                                                   |
| `500` | Internal error                                                 |

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url 'https://api.workstream.stateset.com/v1/workflows/active-horizon-agent/{workflow_id}/reprioritize' \
    --header "x-api-key: $STATESET_TEMPORAL_API_KEY" \
    --header 'Content-Type: application/json' \
    --data '{
    "task_ids": [
      "3fa85f64-5717-4562-b3fc-2c963f66afa6"
    ]
  }'
  ```
</RequestExample>
