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

# BudgetReason

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

## Typed access

`BudgetReason` operations are reached via `client.Api.Finance.ReasonCode` on `EksoClient`.

```csharp theme={null}
await client.Api.Finance.ReasonCode.ListReasonCodeAsync();
```

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                                                  |
| -------- | ------------------------------- | -------------------------------------------------------- |
| `GET`    | `/api/finance/reason-code`      | Lists all budget reason codes for the current tenant.    |
| `GET`    | `/api/finance/reason-code/{id}` | Retrieves a single budget reason code by its identifier. |
| `POST`   | `/api/finance/reason-code`      | Creates a new budget reason code.                        |
| `PUT`    | `/api/finance/reason-code`      | Updates an existing budget reason code.                  |
| `DELETE` | `/api/finance/reason-code/{id}` | Deletes a budget reason code by its identifier.          |

## See also

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