---
title: "Get BankTransfer record"
method: GET
path: "/public/v1/bank-transfers/{record_number}/"
tags: ["Bank Transfers"]
---

# Get BankTransfer record

`GET /public/v1/bank-transfers/{record_number}/`

Retrieve a specific BankTransfer record by its record number with all related data.

## Path parameters

- `record_number` integer, required — The `number` attribute of the record.

## Query parameters

- `search` string, nullable
- `company_id` integer[], nullable
- `number` integer[], nullable
- `start_date` string, date, nullable
- `end_date` string, date, nullable
- `debit_bank_account_number` integer[], nullable
- `credit_bank_account_number` integer[], nullable
- `record_status` RecordStatus[], nullable
- `approval_status` string[], nullable
- `approval_status_scope` RecordStatus[], nullable
- `updated_after` string, date-time, nullable
- `updated_before` string, date-time, nullable

## Response `200`

OK

- PublicBankTransferSchemaOut
  - `bank_match_status` string, nullable
  - `reconciliation_status` string, nullable
  - `created_by` AuditActorSchemaOut — Schema for audit actor information.
    - `actor_type` string, nullable
    - `email` string, nullable
    - `first_name` string, nullable
    - `last_name` string, nullable
    - `timestamp` string, date-time, nullable
  - `updated_by` AuditActorSchemaOut — Schema for audit actor information.
    - `actor_type` string, nullable
    - `email` string, nullable
    - `first_name` string, nullable
    - `last_name` string, nullable
    - `timestamp` string, date-time, nullable
  - `internal_id` integer, required
  - `number` integer, required
  - `transaction_id` integer, required
  - `debit_entry_id` integer, required
  - `credit_entry_id` integer, required
  - `date` string, date, required — Posting date (GL date) - the date when the transaction is recorded in the general ledger
  - `transaction_date` string, date, required — Transaction date (inception date) - the date when the transaction actually occurred
  - `company_id` integer, required
  - `company_name` string, required
  - `company_currency` string, required
  - `debit_bank_account_number` integer, nullable, required
  - `credit_bank_account_number` integer, nullable, required
  - `amount` string, required — Transfer amount
  - `exchange_rate` string, required
  - `memo` string, required
  - `record_status` 'draft' | 'posted' | 'archived', required
  - `currency_iso_4217_code` string[]
  - `created_at` string, date-time, required — Date and time the record was created
  - `updated_at` string, date-time, required — Date and time the record was last updated

## Other responses

- `400` — Bad Request
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.net/dualentry/apis/dualentry-public-api-2.md) · [All operations](https://skmtc.net/dualentry/apis/dualentry-public-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dualentry/dualentry-public-api-2/versions/77cd3c6ec719/schema)
