A representation of a meeting poll response.
This resource includes the following properties:
Property | Type | Description |
---|---|---|
id |
string | The poll response ID. |
poll |
Meeting Poll Preview | A minimal representation of the poll. |
email |
string | The respondent’s email address. |
display_name |
string | The respondent’s full name. |
first_name |
string | The respondent’s first name. |
last_name |
string | The respondent’s last name. |
time_zone |
string | The respondent’s local Olson time zone. |
slots |
array of slots | The slots the respondent voted for. |
created_at |
string | The ISO-8601 timestamp when the response was created. |
Here is an example representation of this resource:
{
"id": "pr_01ED74HMFGVZ92YVCWTD8Y8H6X",
"poll": {
"id": "poll_01ED74HMFGVZ92YVCWTD8Y8H6X",
"slug": "8djhf8w9",
"name": "Board Meeting"
},
"email": "jdaker@savvycal.com",
"display_name": "John Daker",
"first_name": "John",
"last_name": "Daker",
"time_zone": "America/Chicago",
"slots": [{
"start_at": "2021-06-01T10:00:00Z",
"end_at": "2021-06-01T10:30:00Z"
}, {
"start_at": "2021-06-02T10:00:00Z",
"end_at": "2021-06-02T10:30:00Z"
}],
"created_at": "2021-06-01T10:00:00Z"
}