---
title: "Get Internal Transfer Details"
method: GET
path: "/internal-transfer/{transfer_id}/"
tags: ["Internal Transfers"]
---

# Get Internal Transfer Details

`GET /internal-transfer/{transfer_id}/`

Retrieve details of an internal transfer.

## Path parameters

- `transfer_id` string, required

## Headers

- `x-company-id` integer — ID of a child company for authentication. If not provided, the parent company will be authenticated.

## Response `200`

Successful Response

- InternalTransferResponse
  - `status` 'success'
  - `data` InternalTransferResultInput, required
    - `id` string, required — Transfer ID
    - `idempotency_key` string — A unique key that ensures a request is processed only once. If the same key is sent with multiple requests, the server returns the original response instead of performing the action again.
    - `company_id` string, required — Company ID
    - `created_at` string, date-time, required — Creation date of the transfer
    - `updated_at` string, date-time, required — Last update date of the transfer
    - `quote_id` string — Quote request ID used in the transfer, if applicable
    - `rate` number — FX rate used in the transfer, if applicable
    - `source_amount` number — Amount of the transfer
    - `destination_amount` number — Amount received in the target account currency
    - `source_account_id` string, required — Source account ID
    - `target_account_id` string, required — Target account ID
    - `status` 'PENDING' | 'PROCESSING' | 'SETTLING' | 'COMPLETED' | 'FAILED', required
    - `failure_reason` string — Reason of the failure, if the transfer failed
    - `callback_url` string — URL to send a POST request with the result of the transfer, if applicable
    - `voucher_ids` string[] — Voucher IDs associated with the transfer of funds to the final destination.
    - `source_account` AccountToIncludeInResponses, required
      - `id` string, required
      - `account_number` string, required
      - `currency` string, required
      - `country` string, required
      - `company` CompanyToIncludeInResponses, required
        - `id` string, required
        - `name` string, required
    - `target_account` AccountToIncludeInResponses
      - `id` string, required
      - `account_number` string, required
      - `currency` string, required
      - `country` string, required
      - `company` CompanyToIncludeInResponses, required
        - `id` string, required
        - `name` string, required
    - `company` CompanyToIncludeInResponses, required
      - `id` string, required
      - `name` string, required

## Other responses

- `403` — Forbidden
- `422` — Validation Error
- `500` — Internal Server Error

---

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