# Securities Transfers events Securities Transfers events Endpoint: POST Securities Transfers events Version: 1.78.0 ## Request fields (application/json): - `id` (string, required) Event unique identifier - `created_at` (string, required) Date and time when the event was created. [RFC 3339-5](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6), [ISO8601 UTC](https://www.iso.org/iso-8601-date-and-time-format.html) - `type` (string, required) Event type Enum: "SECURITIES_TRANSFER.NEW", "SECURITIES_TRANSFER.PROCESSING", "SECURITIES_TRANSFER.SETTLED", "SECURITIES_TRANSFER.CANCELLED", "SECURITIES_TRANSFER.DATA_CHANGED" - `object` (object, required) - `object.id` (string, required) Securities transfer request unique identifier. - `object.created_at` (string, required) Date and time when the resource was created. [RFC 3339-5](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6), [ISO8601 UTC](https://www.iso.org/iso-8601-date-and-time-format.html) - `object.updated_at` (string, required) Date and time when the resource was last updated. [RFC 3339-5](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6), [ISO8601 UTC](https://www.iso.org/iso-8601-date-and-time-format.html) - `object.user_id` (string, required) User unique identifier. - `object.account_id` (string, required) Account unique identifier. - `object.direction` (string, required) Direction of the securities transfer * INCOMING - Securities transfer is incoming to the user. * OUTGOING - Securities transfer is outgoing from the user. Enum: "INCOMING", "OUTGOING" - `object.status` (string, required) Status of the securities transfer * NEW - Securities transfer is created but not started processing. * PROCESSING - Securities transfer is in processing. * SETTLED - Securities transfer was successfully settled. * CANCELLED - Securities transfer was cancelled. Enum: "NEW", "PROCESSING", "SETTLED", "CANCELLED" - `object.transfer_type` (string, required) Type of the securities transfer * NO_OWNER_CHANGE - No change of ownership. Enum: "NO_OWNER_CHANGE" - `object.instrument_id` (string, required) ISIN or other identity (depends on instrument_id_type) of the security to be transferred. - `object.instrument_id_type` (string, required) Type of the instrument_id * ISIN - International Securities Identification Number Enum: "ISIN" - `object.quantity` (string, required) The quantity of instrument to move in or out. - `object.counterparty` (object, required) - `object.counterparty.bic` (string, required) Business Identifier Code (also known as SWIFT-BIC, BIC, SWIFT ID or SWIFT code) [ISO 9362](https://en.wikipedia.org/wiki/ISO_9362). - `object.counterparty.account_number` (string) The account number is composed of valid Swift charset with a max length of 28 if provided. The account number helps other brokers identify the owner of the assets. - `object.counterparty.name` (string) The name is going to be split into 4 lines of 35 characters, the split is space based. This means that even if the name is exactly 140 of length, we may drop out the last parts if they don't fit into 4x35. - `object.settlement_reference` (string, required) Unique identifier of the securities transfer set by API consumers. Useful for API consumers to build special logic on top of it. NOTE: For automatic incoming transfers where API users will subscribe to the corresponding webhook, the value is set by Upvest! - `object.trade_date` (string, required) The forecast date when the trade takes place. Date in YYYY-MM-DD format. - `object.settlement_date` (string, required) The forecast date when the settlement takes place. Date in YYYY-MM-DD format. - `object.quantity_settled` (string) The quantity of instruments settled. - `object.place_of_settlement` (string) Business Identifier Code (also known as SWIFT-BIC, BIC, SWIFT ID or SWIFT code) [ISO 9362](https://en.wikipedia.org/wiki/ISO_9362). - `object.actual_settlement_date` (string) The date when the transfer settled, only known in SETTLED status. Date in YYYY-MM-DD format. - `webhook_id` (string, required) Webhook unique identifier. ## Response 200 fields