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

# session.request

> Escape hatch: call any operation a session token may use, by id.

```ts theme={null}
request<Id extends SessionOperationId>(operationId: Id, ...rest: RequestParams<Id, OptionsFor<Id>>): Promise<ResponseBody<Id>>
```

## Example

```ts theme={null}
await session.request("getUnit", { path: { unit_id: unitId } });
```
