Pular para o conteúdo principal

NotificationsRequestBodyErrorResponse

messagestringrequired
Example: Invalid request body
errors object[]required
  • Array [
  • fieldNamestringrequired

    JSON field path that failed parsing or validation. Empty for whole-body JSON errors.

    Example: eventIds[0]
    codestringrequired

    Possible values: [unknown_field, invalid_type, invalid_json]

    Example: invalid_type
    messagestringrequired
    Example: eventIds has an invalid type
  • ]
  • NotificationsRequestBodyErrorResponse
    {
    "message": "Invalid request body",
    "errors": [
    {
    "fieldName": "eventIds[0]",
    "code": "invalid_type",
    "message": "eventIds has an invalid type"
    }
    ]
    }