# Create Wire Initiates a Wire Transfer. Wires can only be sent to accounts created and verified via Create Counterparty. Initiating outgoing wire transfers isn’t available by default and must be enabled — please contact your Jiko point of contact to learn more. When implementing our Wire Transfer entry screens in your application's UI, you must include the following instructions for your end-users: _“By using this service, you hereby acknowledge that sending wires to third parties presents an increased risk of fraud, and that as per the terms of your Commercial Bank Account Agreement (the "Agreement"), you agree that our security measures are commercially reasonable methods of providing security against unauthorized Funds Transfers, and that you shall be bound by any request for a Funds Transfer received by the Bank, whether or not authorized, issued in your name and accepted by the Bank in compliance with the security measures.”_ Endpoint: POST /api/v1/jiko-accounts/{account_id}/wires/ Version: Version: fd60d28d Security: HTTPBearer ## Path parameters: - `account_id` (string, required) ## Header parameters: - `x-jiko-idempotency` (string, required) - `x-jiko-signature` (string, required) ## Request fields (application/json): - `counterparty_id` (string, required) - `amount_usdc` (integer) The amount, in USD cents. - `created_by` (string) A string identifying the wire transfer originator. - `description` (any) A description of the transfer, visible on statements. - `wire_id` (any) The ID for this wire transfer, auto-generated if not provided. ## Response 422 fields (application/json): - `detail` (array) - `detail.loc` (array, required) - `detail.msg` (string, required) - `detail.type` (string, required) ## Response 201 fields