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

> Waits until the item's digital identity is ready to use. Issuance has no failure state, so a timeout means keep waiting, not that it failed.

```ts theme={null}
waitUntilIssued(unitId: string, options?: PollOptions): Promise<Unit>
```

This helper polls an existing read until it settles; it issues no endpoint of its own.

## Example

```ts theme={null}
const result = await endstate.units.waitUntilIssued(unit.id);
```
