Skip to main content

Date Picker

The Date Picker Answer is used to submit date information for fields that require date selection.

Fields

FieldTypeRequiredDescription
fieldTypeIdstringYesMust be set to "DatePicker" (from FieldTypeEnum)
datestringYesThe selected date in ISO format (YYYY-MM-DD)

Example Usage

{
"fqName": "PersonalInfo_Personal_DateOfBirth",
"answer": {
"fieldTypeId": "DatePicker",
"date": "1990-01-15"
}
}

Notes

  • The date must be provided in ISO 8601 date format: YYYY-MM-DD.
  • Depending on the field context, there may be validation for minimum and maximum date values.
  • Common uses include dates of birth, document expiry dates, and incorporation dates.