Properties
| Name | Type | Description |
|---|---|---|
| personId | string | The personId of the recipient |
| personEmail | string | The personEmail |
| guestDisplayName | string | Guests, who are unauthenticated users, have a guestDisplayName |
| guestEmail | string | Guests, who are unauthenticated users, have a guestEmail |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Recipient",
"title": "Recipient",
"type": "object",
"properties": {
"personId": {
"type": "string",
"example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS9lOGYwOTIwOC00ZjUxLTExZWYtOTQ4My1iYTA3NjE2MzY4NmQ",
"description": "The personId of the recipient"
},
"personEmail": {
"type": "string",
"example": "[email protected]",
"description": "The personEmail"
},
"guestDisplayName": {
"type": "string",
"example": "John Wayne",
"description": "Guests, who are unauthenticated users, have a guestDisplayName"
},
"guestEmail": {
"type": "string",
"example": "[email protected]",
"description": "Guests, who are unauthenticated users, have a guestEmail"
}
}
}