FieldData

Parameters

Each fieldData object will always have one and only one of the following: (1) value, (2) fieldChoiceId OR (3) imageContent and imageMimetype.

NameTypeDescriptionRequirement
idIntegerThe fieldData identifierRequired
fieldIdIntegerThe ID of the field for which data was createdRequired
valueStringThe value created for the field. If the field type is text, date, displayText, zip, city, suite, street, state,signDate, signerName, signerEmail, then the value will be a string. If the field type is signature or initials, then the value will be a string if the value is text or empty if the value is an imageOptional
fieldChoiceIdIntegerThe ID of the fieldChoice if the field type is select or checkboxOptional
imageContentStringThe Base64 encoded image content if the field type is signature or initials AND an image was provided.Optional
imageMimetypeStringThe uploaded image mimetype if the field type is signature or initialsOptional

Example Responses

{
  "id": 389,
  "fieldId": 1185,
  "value": "John Smith"
}
{
  "id": 248,
  "fieldId": 563,
  "imageContent": "iVBORw0KGgoAAAANSUhEUgAAAbkAAAC1CAYAAAD...ggg==",
  "imageMimetype": "image/png"
}
{
  "id": 405,
  "fieldId": 963,
  "fieldChoiceId": 348
}