---
title: "Query for a pageable list of deposits."
method: GET
path: "/v2/deposits"
tags: ["Deposits"]
---

# Query for a pageable list of deposits.

`GET /v2/deposits`

## Query parameters

- `since_utc` string, date-time, nullable
- `booking_id` integer, nullable

## Response `200`

The paged result of deposits.

- PageableEnumerableOfDepositViewModel — Represents a single page plus meta data for a collection of records.
  - `items` DepositViewModel[] — The subset of records for the current page in the collection.
    - `id` integer — The ID of this record.
    - `adjustments` DepositAdjustmentViewModel[] — Associated adjustments.
      - `amount` number — The adjustment amount.
      - `description` string — The adjustment description.
    - `deposited_utc` string, date-time — The timestamp this deposit occurred.
    - `external_deposit_number` string — The third-party identifier, if it exists.
    - `external_status` 'pending' | 'in_transit' | 'paid' | 'canceled' | 'failed'
    - `fees` FeePartialViewModel[] — Associated fees.
      - `id` integer — The ID of this record.
      - `amount` number — The fee amount.
      - `booking_id` integer — The id of the booking the fee is for.
    - `processing_status` 'recorded' | 'imported' | 'pending' | 'failed' | 'pending_resolutions'
    - `processor` 'manual' | 'airbnb' | 'lynnbrook_group' | 'stripe'
    - `total_adjustments` number — Total adjustments amount.
    - `total_deposited` number — Total deposited amount (the final net).
    - `total_fees` number — Total fees amount.
    - `total_transactions` number — Total transactions amount.
    - `transactions` DepositTransactionPartialViewModel[] — Associated payments, refunds, and security deposits.
      - `id` integer — The ID of this record.
      - `amount` number — The transaction amount.
      - `booking_id` integer — The id of the booking the transaction is for.
      - `type` 'payment' | 'refund' | 'security_deposit'
  - `limit` integer — The maximum number of records per page.
  - `next_page_url` string — URL to fetch the next page of records. A null value indicates that there are no more pages in the collection.
  - `offset` integer — The current offset from the start of the collection.

---

[API](https://skmtc.net/ownerrez/apis/ownerrez-api.md) · [All operations](https://skmtc.net/ownerrez/apis/ownerrez-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ownerrez/ownerrez-api/revisions/fa0c0f146039/schema)
