# List Budgets Retrieves all budgets configured for the company. Endpoint: GET /companies/{CompanyId}/budgets Version: 1.0.3 Security: OAuth2 ## Path parameters: - `CompanyId` (string, required) The ID of the company. ## Query parameters: - `offset` (integer) Number of records to skip for pagination - `limit` (integer) Maximum number of records to return ## Response 200 fields (application/json): - `Data` (array) - `Data.BudgetId` (string) - `Data.Name` (string) - `Data.StartDate` (string) Start date in YYYY-MM-DD format (e.g., 2025-01-31) Example: "2025-01-31" - `Data.EndDate` (string) End date in YYYY-MM-DD format (e.g., 2025-01-31) Example: "2025-01-31" - `Data.ClassIds` (array) - `Data.DepartmentIds` (array) - `Pagination` (object) - `Pagination.offset` (integer) The number of records skipped - `Pagination.limit` (integer) The maximum number of records requested Example: 100 - `Pagination.total` (integer) The total number of records available Example: 250