Returns a paginated list of submissions.

Query Parameters
  • dateFrom
    Type: string

    The date from when the submission is created

  • dateTo
    Type: string

    The date up until when the submission is created

  • status
    Type: string enum

    The status of the submission.

    values
    • Pending
    • SolvingIssues
    • Completed
    • Cancelled
  • limit
    Type: integer Format: int32

    Gets or initializes the maximum number of records to return.

  • offset
    Type: integer Format: int32

    Gets or initializes the offset from 0.

Responses
  • 401

    Unauthorized

  • 403

    Forbidden

Request Example for get/v1/accounts/submissions
curl https://stage-api.openmarkets.com.au/v1/accounts/submissions
{
  "metadata": {
    "links": {
      "self": "https://api.openmarkets.com.au/v1/accounts/submissions?limit=10&offset=0",
      "next": "https://api.openmarkets.com.au/v1/accounts/submissions?limit=10&offset=10",
      "previous": null
    },
    "limit": 10,
    "offset": 0,
    "total": 17
  },
  "results": [
    {
      "id": "8f2b6c14-9d0a-4e35-b7c8-2a1f5d3e7b46",
      "organisationCode": "TPUAT",
      "adviserCode": "UAT",
      "brokerageCode": "NIL",
      "branchId": "UA",
      "status": "Pending",
      "referenceId": "CRM-4821",
      "accountType": "Individual",
      "createdAtUtc": "2025-06-11T23:45:12Z",
      "updatedAtUtc": "2025-06-12T01:03:58Z"
    },
    {
      "id": "3c7d9e02-41ab-4f68-8d55-6b90c2e4a173",
      "organisationCode": "TPUAT",
      "adviserCode": "UAT",
      "brokerageCode": "NIL",
      "branchId": "UA",
      "status": "Completed",
      "referenceId": "CRM-4822",
      "accountType": "Joint",
      "createdAtUtc": "2025-05-02T01:19:44Z",
      "updatedAtUtc": "2025-05-06T22:31:09Z"
    }
  ]
}