HinStockTransferRequest

Request object for transfer of some securities from one HIN to your Openmarkets account

  • accountName
    Type: string
    required

    The name of the account as registered at the existing broker

  • brokerName
    Type: string
    required

    Name of the broker where the existing HIN is held

  • brokerParticipantId
    Type: string
    required

    PID of the broker where the existing HIN is held

  • hinSecuritiesToTransfer
    Type: array object[] · HinStockTransferRequestSecurity[]
    required

    List of securities to be transferred off the existing HIN to account at Openmarkets

    • qty
      Type: integer
      required

      Exact number of this security to transfer.

    • securityCode
      Type: string
      required

      The stock/security code to transfer (as listed on your existing holdings)

    • securityName
      Type: string
      required

      The name of the security to transfer (as listed on your existing holdings)

  • holderIdentificationNumber
    Type: string
    required

    HIN of the account as registered at the existing broker

  • accountDesignation
    Type: string | null

    Designation of the account as registered at the existing broker (if applicable)

Examples
{
  "brokerName": "Example Securities Limited",
  "brokerParticipantId": "20087",
  "accountName": "Ms Jane Marie Citizen",
  "accountDesignation": "FAMILY A/C",
  "holderIdentificationNumber": "X0009876543",
  "hinSecuritiesToTransfer": [
    {
      "securityCode": "BHP",
      "securityName": "BHP Group Limited",
      "qty": 200
    },
    {
      "securityCode": "CBA",
      "securityName": "Commonwealth Bank of Australia",
      "qty": 50
    }
  ]
}