Text
The Text Answer is used to submit simple text responses to single-line text input fields.
Fields
| Field | Type | Required | Description |
|---|---|---|---|
fieldTypeId | string | Yes | Must be set to "Text" (from FieldTypeEnum) |
textValue | string | No | The text value for the field |
Example Usage
{
"fqName": "PersonalInfo_Contact_Email",
"answer": {
"fieldTypeId": "Text",
"textValue": "john.smith@example.com"
}
}
Notes
- Text answers are used for simple, single-line inputs like email addresses, names, or reference numbers.
- The
textValuemay be subject to validation depending on the specific field requirements.