Participant

Parameters

NameTypeDescriptionRequirement
idIntegerThe participant identifierRequired
nameStringThe participant's nameRequired
emailStringThe participant's emailRequired
statusStringThe participant's status. Possible values: draft, sent, viewed, signed, declinedRequired
roleObjectThe SignRole object associated with this participantRequired
fieldDataArrayAn array of FieldData objects associated with this participantOptional

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"
    }
  ]
}