---
title: "Fetch a payment."
method: GET
path: "/v2/payments/{id}"
tags: ["Payments"]
---

# Fetch a payment.

`GET /v2/payments/{id}`

## Path parameters

- `id` integer, required

## Response `200`

A model representing the payment.

- PaymentViewModel
  - `id` integer — The ID of this record.
  - `amount` number — The payment amount.
  - `booking_id` integer — The id of the booking.
  - `collected_utc` string, date-time — The timestamp the payment was collected.
  - `deposits` TransactionDepositPartialViewModel[] — The list of deposits.
    - `id` integer — The ID of this record.
    - `amount` number — The amount of this deposit.
    - `deposit_id` integer — The ID of the deposit this transaction is included in.
    - `deposited_utc` string, date-time — The timestamp this deposit occurred.
  - `description` string — The payment description.
  - `is_deposited` boolean — Whether the payment has been deposited in full.
  - `total_fees` number — The amount of fees.
  - `type` 'credit_card' | 'check' | 'cash' | 'credit_card_processed_elsewhere' | 'pay_pal' | 'bank_transfer' | 'chargeback' | 'other'

---

[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)
