> ## Documentation Index
> Fetch the complete documentation index at: https://vastai-80aa3a82-auto-cli-sdk-preview-pr-398.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# VastAI.update_scheduled_job

Update an existing scheduled job.

## Signature

```python theme={null}
VastAI.update_scheduled_job(
    id: int,
    request_body: Any
) -> dict
```

## Parameters

<ParamField path="id" type="int" required />

<ParamField path="request_body" type="Any" required />

## Returns

`dict`

## Example

```python theme={null}
from vastai import VastAI

client = VastAI(api_key="YOUR_API_KEY")
result = client.update_scheduled_job(id=12345, request_body="value")
print(result)
```
