Parameters
| Name | Type | Description | Requirement |
|---|---|---|---|
| id | Integer | The participant identifier | Required |
| name | String | The participant's name | Required |
| String | The participant's email | Required | |
| status | String | The participant's status. Possible values: draft, sent, viewed, signed, declined | Required |
| role | Object | The SignRole object associated with this participant | Required |
| fieldData | Array | An array of FieldData objects associated with this participant | Optional |
Example Response
{
"id": 379,
"name": "John Smith",
"email": "[email protected]",
"status": "Signed",
"role": {
"id": 497,
"name": "Employee",
"sequence": 0
},
"fieldData": [
{
"id": 389,
"fieldId": 1185,
"imageContent": "iVBORw0KGgoAAAANSUhEUgAAAbkAAAC1CAYAAADC4YHnAAAAAXNSR0IArs4...==",
"imageMimetype": "image/png"
}
]
}