recipient
Returns a single Recipient by ID. A Recipient is a person who has been sent a document to sign — distinct from a template Role.
Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
id | ID | No | Global node ID |
recipientId | ID | No | Recipient-specific ID |
Provide either id or recipientId.
Return Type
Example
query GetRecipient($id: ID!) {
recipient(id: $id) {
id
firstName
lastName
email
phoneNumber
role
roleType
status
authentication
signedDateTime
sentDateTime
emailOpenedDateTime
documentFirstViewedDateTime
emailProblem
expiryDate
recipientOrder
document {
id
name
status
}
elementConnection {
documentElements {
id
elementType
label
value
}
}
}
}