---
title: "List Transfers"
method: GET
path: "/inventory/transfers"
tags: ["Inventory Transfers"]
---

# List Transfers

`GET /inventory/transfers`

List transfers (latest first).

## Query parameters

- `status` string, nullable
- `from_location_id` integer, nullable
- `to_location_id` integer, nullable
- `limit` integer

## Response `200`

Successful Response

- TransferOut[]
  - `id` integer, required
  - `number` string, required
  - `transfer_date` string, required
  - `from_location_id` integer, required
  - `from_location_code` string, required
  - `from_location_name` string, required
  - `to_location_id` integer, required
  - `to_location_code` string, required
  - `to_location_name` string, required
  - `status` string, required
  - `notes` string, nullable, required
  - `created_by` string, nullable, required
  - `created_at` string, required
  - `posted_by` string, nullable, required
  - `posted_at` string, nullable, required
  - `lines` TransferLine[], required
    - `id` integer, required
    - `item_id` integer, required
    - `item_code` string, required
    - `item_name` string, required
    - `qty` number, required
    - `uom` string, required
    - `note` string, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/bamboome/apis/contact-sync-api.md) · [All operations](https://skmtc.dev/bamboome/apis/contact-sync-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/bamboome/contact-sync-api/revisions/56beadb81ad2/schema)
