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

# extendTimeout

```typescript theme={null}
import { extendTimeout } from '@intuned/runtime';

function extendTimeout(): void
```

Resets the timeout timer for the current attempt. Use this when your automation needs more time than the configured timeout allows—for example, when processing a large dataset or waiting for slow network responses.

When called, the attempt gets a fresh timeout period equal to the original timeout duration. This function doesn't block execution.

<Note>
  This function only works in the context of a Job. It has no effect when running automations directly via the API.
</Note>

**Returns**

Returns `void`.

## Related

* [extendPayload](/main/05-references/runtime-sdk-typescript/extend-payload) — Add additional payloads to the current job execution.
