Parameters
Each fieldData object will always have one and only one of the following: (1) value, (2) fieldChoiceId OR (3) imageContent and imageMimetype.
| Name | Type | Description | Requirement |
|---|---|---|---|
| id | Integer | The fieldData identifier | Required |
| fieldId | Integer | The ID of the field for which data was created | Required |
| value | String | The 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 image | Optional |
| fieldChoiceId | Integer | The ID of the fieldChoice if the field type is select or checkbox | Optional |
| imageContent | String | The Base64 encoded image content if the field type is signature or initials AND an image was provided. | Optional |
| imageMimetype | String | The uploaded image mimetype if the field type is signature or initials | Optional |
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
}