Pular para o conteúdo principal

IdentityProfileRequestBodyErrorResponse

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: auth.type
    codestringrequired

    Possible values: [unknown_field, invalid_type, invalid_json]

    Example: unknown_field
    messagestringrequired
    Example: auth.type has an invalid type
  • ]
  • IdentityProfileRequestBodyErrorResponse
    {
    "message": "Invalid request body",
    "errors": [
    {
    "fieldName": "auth.type",
    "code": "unknown_field",
    "message": "auth.type has an invalid type"
    }
    ]
    }