# Account incoming wire transfer Notification that an incoming wire transfer (previously called 'deposit') has been performed on a managed account. Endpoint: POST /managed_accounts/deposits/watch Version: v2 ## Header parameters: - `call-ref` (string) A call reference generated by the caller and unique to the caller to provide correlation between the caller and system with a maximum length of 255 - `published-timestamp` (integer, required) The timestamp, expressed in Epoch timestamp using millisecond precision, when this event was published. - `signature-v2` (string, required) The signature to verify the authenticity of this request. This is the base64 hash (HmacSHA256) of the call-ref + payload + published-timestamp using your API key. - `signature` (string, required) The signature to verify the authenticity of this request. This is the base64 hash (HmacSHA256) of the published-timestamp using your API key. ## Request fields (application/json): - `id` (object, required) The id of the managed account where an incoming wire transfer has been received. - `id.id` (string, required) - `id.type` (string, required) Enum: "managed_cards", "managed_accounts" - `transactionId` (string, required) The id of the transaction, for reference. - `transactionAmount` (object, required) The amount of the transaction. - `transactionAmount.currency` (string, required) The currency expressed in ISO-4217 code. Example: GBP, EUR, USD. - `transactionAmount.amount` (string, required) The monetary amount, scaled to the lowest denomination of the currency. - `transactionTimestamp` (string, required) The timestamp of the transaction, using epoch timestamp with millisecond precision. - `paymentNetwork` (string) The field specifies the payment system through which the incoming wire transfer was processed. Enum: "SEPA", "FASTER_PAYMENTS", "SWIFT", "BACS", "CHAPS", "RIX" - `emailAddress` (string) The email address of the user who effected the incoming wire transfer. - `owner` (object, required) - `senderName` (string) - `state` (string) Enum: "PENDING", "COMPLETED", "REJECTED" - `senderIban` (string) - `senderSortCode` (string) - `senderAccountNumber` (string) - `senderAccountDescriptor` (string) - `transactionFee` (object) Any fee amount taken with the incoming wire transfer - `senderReference` (string) A reference provided by the sender of the incoming wire transfer ## Response 204 fields