# Get On-Us Transfer

Gets a single on-us transfer by ID.

Endpoint: GET /api/v1/transfers/on-us/{transfer_id}/
Version: Version: cf52545e
Security: HTTPBearer

## Path parameters:

  - `transfer_id` (string, required)

## Header parameters:

  - `x-jiko-idempotency` (string, required)

  - `x-jiko-signature` (string, required)

## Response 200 fields (application/json):

  - `id` (string, required)

  - `status` (string, required)
    Enum: "PENDING", "COMPLETED", "REJECTED"

  - `reason` (any, required)

  - `transfer` (any, required)

  - `transfer.transfer_id` (any)
    The ID for this transfer, auto-generated if not provided.

  - `transfer.description` (any)
    A description of the transfer, visible on statements.

  - `transfer.end_to_end_identification` (any)
    Unique identification assigned by the initiating party to unambiguously identify the transaction. This identification is passed on, unchanged, throughout the entire end-to-end chain.

  - `transfer.from_account` (object, required)

  - `transfer.from_account.id` (string, required)

  - `transfer.from_account.type` (string, required)

  - `transfer.type` (string, required)

  - `transfer.source` (string, required)
    The source of customer funds at the Partner institution.

  - `transfer.amount` (object, required)

  - `transfer.amount.value` (integer, required)
    USD values are always in cents.

  - `transfer.amount.currency` (string, required)

  - `transfer.amount.formatted` (string)

  - `transfer.target` (string, required)
    The funds destination belonging to the customer at the Partner institution.

  - `transfer.transfer_type` (string, required)
    Enum: "BANK_TRANSFER", "SECURITY_TRANSFER"

  - `transfer.to_account` (object, required)

  - `transfer.to_account.id` (string, required)

  - `transfer.to_account.type` (string, required)

  - `fees` (array, required)

  - `fees.type` (string, required)

  - `object_type` (string, required)

## Response 422 fields (application/json):

  - `detail` (array)

  - `detail.loc` (array, required)

  - `detail.msg` (string, required)

  - `detail.type` (string, required)

  - `detail.input` (any)

  - `detail.ctx` (object)

