AdviceResponsePaginatedResponse

  • metadata
    Type: object · PaginationMetaData
    • limit
      Type: integer Format: int32

      Signed 32-bit integers (commonly used integer type).

    • links
      Type: object · Links
    • offset
      Type: integer Format: int32

      Signed 32-bit integers (commonly used integer type).

    • total
      Type: integer Format: int32

      Signed 32-bit integers (commonly used integer type).

  • results
    Type: array object[] | null · AdviceResponse[]
    • adviceContactMethod
      Type: string | null
    • adviceDetails
      Type: string | null
    • adviceNumber
      Type: integer | null Format: int64

      Signed 64-bit integers (long type).

    • adviceTimeStamp
      Type: string | null Format: date-time

      the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z

    • advisorName
      Type: string | null
    • basisOfAdvice
      Type: array string[] | null
    • clientName
      Type: string | null
    • declaration
      Type: string | null
    • exchange
      Type: string | null
    • externalAdviceReference
      Type: string | null
    • externalOrderReference
      Type: string | null
    • isExecutionOnly
      Type: boolean | null
    • isLatestRecord
      Type: boolean | null
    • orderNumber
      Type: integer | null Format: int64

      Signed 64-bit integers (long type).

    • price
      Type: number | null Format: double
    • pricingInstruction
      Type: string | null
    • securityCode
      Type: string | null
    • side
      Type: string | null
    • typeOfAdvice
      Type: string | null
    • volume
      Type: integer | null Format: int64

      Signed 64-bit integers (long type).

Examples
{
  "metadata": {
    "links": {
      "self": "https://api.openmarkets.com.au/v1/orders/advice?limit=10&offset=0",
      "next": "https://api.openmarkets.com.au/v1/orders/advice?limit=10&offset=10",
      "previous": null
    },
    "limit": 10,
    "offset": 0,
    "total": 24
  },
  "results": [
    {
      "adviceNumber": 884213,
      "clientName": "Ms Jane Marie Citizen",
      "advisorName": "John Doe",
      "adviceTimeStamp": "2025-08-14T02:15:33Z",
      "adviceContactMethod": "Phone",
      "adviceDetails": "Client instructed to buy 200 BHP with a limit of $47.40.",
      "orderNumber": 41156644,
      "externalOrderReference": "CUST-35bd9318-74fc-4ea4-9bdc-593f8510b780",
      "externalAdviceReference": "ADV-2025-0884213",
      "declaration": "Advice given in line with the client documented objectives.",
      "isExecutionOnly": false,
      "securityCode": "BHP",
      "exchange": "ASX",
      "side": "Buy",
      "volume": 200,
      "price": 47.4,
      "pricingInstruction": "Limit",
      "typeOfAdvice": "Personal",
      "basisOfAdvice": [
        "Client objectives",
        "Research note"
      ],
      "isLatestRecord": true
    },
    {
      "adviceNumber": 884214,
      "clientName": "Acme Superannuation Fund",
      "advisorName": "John Doe",
      "adviceTimeStamp": "2025-08-14T03:41:02Z",
      "adviceContactMethod": "Email",
      "adviceDetails": "Client placed the order without advice.",
      "orderNumber": 41156702,
      "externalOrderReference": null,
      "externalAdviceReference": "ADV-2025-0884214",
      "declaration": null,
      "isExecutionOnly": true,
      "securityCode": "CBA",
      "exchange": "ASX",
      "side": "Sell",
      "volume": 50,
      "price": 172.35,
      "pricingInstruction": "Market",
      "typeOfAdvice": "ExecutionOnly",
      "basisOfAdvice": [],
      "isLatestRecord": true
    }
  ]
}