Skip to main content
https://.thoughtindustries.com

Meetings

Returns a single meeting by its unique identifier, including the associated course, location, instructors, and attendee details

Returns a single meeting by its unique identifier, including the associated course, location, instructors, and attendee details.

GEThttps://example.thoughtindustries.com/incoming/v2/meetings/:id

Example request

curl "https://example.thoughtindustries.com/incoming/v2/meetings/:id" \
  -H 'Authorization: Bearer YOUR_API_KEY'

Parameters

NameTypeRequiredLocationDescription
iduuidYespathUnique identifier of the meeting to retrieve.

Example response

{
  "id": "00000000-0000-0000-0000-000000000000",
  "title": "string",
  "course": {
    "id": "00000000-0000-0000-0000-000000000000",
    "title": "string"
  },
  "location": {
    "id": "00000000-0000-0000-0000-000000000000",
    "name": "string"
  },
  "instructors": [
    "string"
  ],
  "joinUrl": "string",
  "attendeeInfo": "string",
  "startDate": "2024-01-01T00:00:00.000Z",
  "endDate": "2024-01-01T00:00:00.000Z",
  "attendees": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "email": "string",
      "firstName": "string",
      "lastName": "string",
      "externalCustomerId": "00000000-0000-0000-0000-000000000000"
    }
  ]
}

Response fields

FieldTypeDescription
iduuidUnique identifier for the meeting.
titlestringDisplay title of the meeting.
courseCourseCourse this meeting belongs to.
course.iduuidUnique identifier of the course.
course.titlestringTitle of the course.
locationLocationPhysical location of the meeting.
location.iduuidUnique identifier of the location.
location.namestringName of the location.
instructorsstring[]List of instructor names assigned to the meeting.
joinUrlstringURL attendees use to join the meeting.
attendeeInfostringAdditional instructions or notes displayed to meeting attendees.
startDateISO 8601 timestampDate and time the meeting begins, in ISO 8601 format.
endDateISO 8601 timestampDate and time the meeting ends, in ISO 8601 format.
attendeesUser[]List of users registered to attend the meeting.
attendees.iduuidUnique identifier of the attendee.
attendees.emailstringEmail address of the attendee.
attendees.firstNamestringFirst name of the attendee.
attendees.lastNamestringLast name of the attendee.
attendees.externalCustomerIduuidExternal customer identifier associated with the attendee.