# GET /api/v1/fixed-assets/scheduled-journal-entries

> List scheduled journal entries

- **Tag:** fixed-assets
- **Operation ID:** `list_scheduled_journal_entries_api_v1_fixed_assets_scheduled_journal_entries_get`

## Description

Depreciation journal entries queued to post on their future dates.

These are drafts: none of them is on the books yet. Each item shows the
debit/credit legs that will be written when its date arrives.

## Authentication

Bearer token in `Authorization` header.
Required header: `x-business-id: <business uuid>`.

## Parameters

- `through_date` (query, string · date, optional) — Only entries queued on or before this date
- `limit` (query, integer, optional) — Maximum entries to return

## Responses

### 200 — Successful Response

Schema: `SuccessEnvelope_ScheduledJournalEntryListResponse_`

- `success` (boolean)
- `message` (string)
- `code` (string)
- `data` (ScheduledJournalEntryListResponse)

### 422 — Validation Error

Schema: `HTTPValidationError`

- `detail` (array · ValidationError) → `ValidationError`
  - `loc` (array · string | integer · required)
  - `msg` (string · required)
  - `type` (string · required)
  - `input` (object)
  - `ctx` (object)

## Code samples

### cURL

```bash
curl -X GET 'https://api.ondayzero.com/api/v1/fixed-assets/scheduled-journal-entries' \
  -H 'Authorization: Bearer dz_your_token' \
  -H 'x-business-id: YOUR_BUSINESS_ID'
```

### JavaScript

```javascript
const response = await fetch('https://api.ondayzero.com/api/v1/fixed-assets/scheduled-journal-entries', {
  method: 'GET',
  headers: {
    Authorization: 'Bearer dz_your_token',
    'x-business-id': 'YOUR_BUSINESS_ID',
  },
});
const data = await response.json();
```

### Python

```python
import httpx

headers = {
    "Authorization": "Bearer dz_your_token",
    "x-business-id": "YOUR_BUSINESS_ID",
}

response = httpx.get("https://api.ondayzero.com/api/v1/fixed-assets/scheduled-journal-entries", headers=headers)
data = response.json()
```

## See also

- HTML version: https://www.ondayzero.com/docs/reference/fixed-assets/list-scheduled-journal-entries
- OpenAPI slice: https://www.ondayzero.com/docs/reference/fixed-assets/list-scheduled-journal-entries/openapi.json
- Other endpoints in **fixed-assets**: https://www.ondayzero.com/docs/reference/fixed-assets
