DepositNotification
-
During account opening, we support deposit notifications for Checks OR Wires. Our New Accounts team prioritizes applications that are already funded, so we encourage users to include funding instructions in the Application.
-
CHECK: The request is indicating a check deposit notification. The client still needs to send the physical check to IBKR. The deposit notification is used by IBKR to match the deposited funds to the account.
-
WIRE: The request is indicating a wire deposit notification. The client still needs to contact their bankto initiate the transfer. The deposit notification is used by IBKR to match the deposited funds to the account.For list of wire instructions by currency, please contact dam@ibkr.com.
-
-
Usage: Optional

-
Fully Disclosed Client (Individual, Joint, Retirement, Org, Trust)
-
Advisor Client (Individual, Joint, Retirement, Org, Trust)

XSD
<xsd:complexType name="DepositNotification" use="Optional" minOccurs="0" maxOccurs="2" />
<xsd:sequence>
<xsd:attribute name="type" type="type" use="Required" />
<xsd:attribute name="amount" type="Non-Negative Integer value" use="Required" />
<xsd:attribute name="currency" type="currency" use="Required" />
<xsd:sequence>
<xsd:element name="WireDetails" use="Required for Wire Deposits" minOccurs="0" maxOccurs="1" />
<xsd:attribute name="bank_name" type="String" />
</xsd:sequence>
<xsd:sequence>
<xsd:element name="CheckDetails" use="Required for Check Deposits" minOccurs="0" maxOccurs="1" />
<xsd:attribute name="bank_name" type="String" />
<xsd:attribute name="acct_number" type="String" />
<xsd:attribute name="routing_number" type="String" />
<xsd:attribute name="check_number" type="String" />
</xsd:sequence>
Parameters
Name |
Type |
Description |
|||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
type |
CHECK WIRE |
Specify how fund are being sent to IBKR. |
|||||||||||||||||||||||||
amount |
Non-Negative Integer Value |
Amount being deposited to IBKR. If there is a discrepancy between amount included in the request versus actual amount sent to IBKR, the funds will not be automatically credited to the account. The applicant will need to contact our Customer Service team to verify the fund transfer. |
|||||||||||||||||||||||||
Currency |
|
Currency of the funds being sent to IBKR. |
|||||||||||||||||||||||||
bank_name |
String |
Name of the sending institution. Only required for WIRE deposits |
|||||||||||||||||||||||||
acct_number |
String |
Account number at bank. Only required for CHECK deposits. |
|||||||||||||||||||||||||
routing_number |
String; max characters 9 |
The routing number listed on the check. Only required for CHECK deposits. |
|||||||||||||||||||||||||
check_number |
String; max characters 16 |
The check number listed on the check sent to IBKR. Only required for CHECK deposits. |

<DepositNotification amount="100000.00" type="WIRE" currency="USD">
<WireDetails bank_name="Test Bank"/>
</DepositNotification>
<DepositNotification type="CHECK" amount="150000.00" currency="USD">
<CheckDetails acct_number="1234567890" routing_number="123456789" check_number="209384762" />
</DepositNotification>