Skip to main content

PollResponse

A poll response

created_atdate_timerequired

Poll response creation time

display_namestringrequired

Respondent display name

emailemailrequired

Respondent email

first_namestringrequired

Respondent first name

idstringrequired

Unique poll response identifier (opaque ID)

last_namestringrequired

Respondent last name

phone_numberstring

Respondent phone number

poll object

Preview of a poll

idstringrequired

Poll ID

namestringrequired

Poll name

slugstringrequired

Poll slug

slots object[]required
  • Array [
  • end_atdate_timerequired

    Slot end time

    start_atdate_timerequired

    Slot start time

  • ]
  • time_zonestringrequired

    Respondent time zone

    PollResponse
    {
    "created_at": "2023-01-01T00:00:00Z",
    "display_name": "John Doe",
    "email": "john@example.com",
    "first_name": "John",
    "id": "poll_response_abc123",
    "last_name": "Doe",
    "phone_number": "+1234567890",
    "poll": {
    "id": "poll_abc123",
    "name": "Meeting with John",
    "slug": "meeting-with-john"
    },
    "slots": [
    {
    "end_at": "2023-01-01T01:00:00Z",
    "start_at": "2023-01-01T00:00:00Z"
    }
    ],
    "time_zone": "America/New_York"
    }