# HyperAccounts Vee Two SDK
The HyperAccounts Vee Two API's Sdk for ease of use when handling the API. This tool has been developed to abstract away the complexity of making http requests to the API. This tool also gives the models for both the request body and returns from the API.
## Usage
```c#
using HyperAccountsV2Sdk;
using HyperAccountsV2Sdk.GetHyperAccountV2Client.Models;
const string
BASE_URL = "",
USERNAME = "",
PASSWORD = "";
var client = ClientConstuctor.Construct(BASE_URL, USERNAME, PASSWORD);
SalesInvoiceCollection? invoices = await client.Api.V1.SalesInvoices.GetAsync();
```