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

# Time

> Typed SDK access to the Time resource — methods and HTTP routes.

## Typed access

`Time` operations are reached via `client.Api.Time` on `EksoClient`.

```csharp theme={null}
await client.Api.Time.CreateAsync();
```

For the full set of methods and request/response types, your IDE's auto-completion
is the fastest discovery path. Each method below maps 1-to-1 to an HTTP route in
the [API Reference](/api-reference/introduction).

## Operations

| Method   | Route                         | Summary                                                              |
| -------- | ----------------------------- | -------------------------------------------------------------------- |
| `POST`   | `/api/time`                   | Creates a new non-billable time entry.                               |
| `POST`   | `/api/time/resource/{userId}` | Lists items with billable time logged by a user within a date range. |
| `POST`   | `/api/time/{id}`              | Lists non-billable time entries for a user within a date range.      |
| `PUT`    | `/api/time/{id}`              | Updates an existing non-billable time entry.                         |
| `DELETE` | `/api/time/{id}`              | Deletes a non-billable time entry by its identifier.                 |

## See also

* [SDK overview](/sdk/overview)
* [Authentication](/sdk/authentication)
* [Quickstart](/sdk/quickstart)
* [Error handling](/sdk/error-handling)
