Return a specific event

GET /events/event/{eventid}/{eventdate}

Get the full details regarding a specific event

This allows for authenticated call - which shows events for the authenticated user, or non-authenticated calls which shows only public events, i.e. events that are visible on the iternet.

Path parameters

  • eventid integer Required

    The ID of the event

  • eventdate string Required

    The date of the event to retrieve, YYYY-MM-DD format. Date is local time

Responses

GET /events/event/{eventid}/{eventdate}
curl \
 -X GET https://YOURSITE.infoodle.com/apiv2/events/event/{eventid}/{eventdate} \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "id": 68,
  "date": "2022-06-01",
  "dayNumber": 42,
  "dayNumberTh": "1st",
  "dayNameAbbr": "Wed",
  "dayName": "Wednesday",
  "monthNameAbbr": "Jun",
  "monthName": "June",
  "yearNumber": 2022,
  "setupTime24hr": "09:00",
  "startTime24hr": "09:00",
  "endTime24hr": "600",
  "packDownTime24hr": "600",
  "setupTimeFriendly": "9am",
  "startTimeFriendly": "9am",
  "endTimeFriendly": "10am",
  "packDownTimeFriendly": "10am",
  "show_as_current": "N",
  "title": "Daily Catchup Meeting",
  "allDay": 0,
  "description": "string",
  "passRequired": "N",
  "locationsDecode": [
    {
      "id": 1,
      "name": "Conference Room",
      "address": "1 High Stret, London, SW1A 1AA"
    }
  ],
  "webLink": "https://www.google.com",
  "colorCode": "f5324e",
  "nextEvent": "2022-01-09",
  "questions": {
    "All Events": [
      {
        "locationName": "All Events",
        "question": "Catering",
        "answer": "Included in the price",
        "show": "Y"
      }
    ]
  },
  "hasRoster": "Y",
  "hasLiveEvent": "N",
  "invitees": [
    {
      "group_id": 1,
      "name": "Staff",
      "isadmin": "Y",
      "canadmin": "Y",
      "attendanceCapacity": 50
    }
  ],
  "inviteesHasAdmin": "Y",
  "inviteesHasCanAdmin": "Y",
  "availableInvitees": [
    {
      "id": 1,
      "name": "Staff"
    }
  ]
}