CreateSubmissionError

Response object for indicating a bad request with validation errors.

  • errors
    Type: object

    Fields with validation errors will appear here with an array of error messages.

  • status
    Type: integer

    Integer numbers.

  • title
    Type: string

    Brief description of the error

  • traceId
    Type: string
  • type
    Type: string Format: url
Examples
{
  "type": "https://tools.ietf.org/html/rfc7231#section-6.5.1",
  "title": "One or more validation errors occurred.",
  "status": 400,
  "traceId": "00-2b90a8c317a8033fa4a7f1caed5c97ef-c3116ef183409e59-01",
  "errors": {
    "OrganisationCode": [
      "Invalid value for attribute OrganisationCode. Please provide a valid Organisation Code as provided by Openmarkets."
    ],
    "Data.Individuals[0].DateOfBirth": [
      "Date of birth must be a date in the past."
    ]
  }
}