# Get Wire

Endpoint: GET /api/v1/wires/{wire_id}/
Version: Version: a769d1f5
Security: HTTPBearer

## Security:

  - `HTTPBearer` (unknown)
    http bearer

## Path parameters:

  - `wire_id` (string, required)

## Query parameters:

  - `customer_id` (any)

## Header parameters:

  - `x-jiko-idempotency` (string, required)
    A UUID you generate to identify this request. Reusing a value that was already sent is rejected as a duplicate request.

  - `x-jiko-signature` (string, required)
    Base64-encoded HMAC-SHA256 hash of `x-jiko-idempotency + request pathname + body`, keyed with your shared secret. See [Authentication](/products/partner-api/authentication) for the full algorithm and a code sample.

## Response 200:

  - `200` (unknown)
    Successful Response

## Response 200 fields (application/json):

  - `id` (string, required)

  - `status` (string, required)
    The status of the wire transfer: `PENDING`, `SUCCESS`, or `REJECTED`.
    Enum: "PENDING", "SUCCESS", "REJECTED"

  - `amount` (object, required)

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

  - `amount.currency` (string, required)

  - `amount.formatted` (string)

  - `pocket_id` (string, required)
    Also known as jiko_account_id

  - `time_created` (string, required)

  - `wire_tracking_info` (any)
    Identifiers used to track the wire through the payment network. On outgoing wires these are assigned when the wire is sent; on incoming wires they are read from the received message. Null when not available.

  - `wire_tracking_info.uetr` (any)
    Unique End-to-end Transaction Reference (UETR), a UUID identifying the wire across the payment network.

  - `wire_tracking_info.imad` (any)
    Input Message Accountability Data (IMAD), the Fedwire identifier for the wire. Also known as the Fed reference number; domestic (Fedwire) wires only. Null when not available.

  - `wire_tracking_info.instruction_identification` (any)
    Unique identification assigned by the instructing party to unambiguously identify the instruction (ISO 20022 `InstrId`).

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

  - `direction` (string)

  - `object_type` (string, required)

  - `counterparty_id` (any)
    The ID of the counterparty for this wire transfer.

  - `client_verifiers` (array)
    Identifiers (emails) of the verifiers/approvers of this wire.

## Response 422:

  - `422` (unknown)
    Validation Error

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

