> ## 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.

# endstate.request

> Escape hatch: call any operation this credential may use, by id.

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

## Example

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