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.
GET
https://example.thoughtindustries.com/incoming/v2/meetings/:idExample request
curl "https://example.thoughtindustries.com/incoming/v2/meetings/:id" \
-H 'Authorization: Bearer YOUR_API_KEY'Parameters
| Name | Type | Required | Location | Description |
|---|---|---|---|---|
id | uuid | Yes | path | Unique 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
| Field | Type | Description |
|---|---|---|
id | uuid | Unique identifier for the meeting. |
title | string | Display title of the meeting. |
course | Course | Course this meeting belongs to. |
course.id | uuid | Unique identifier of the course. |
course.title | string | Title of the course. |
location | Location | Physical location of the meeting. |
location.id | uuid | Unique identifier of the location. |
location.name | string | Name of the location. |
instructors | string[] | List of instructor names assigned to the meeting. |
joinUrl | string | URL attendees use to join the meeting. |
attendeeInfo | string | Additional instructions or notes displayed to meeting attendees. |
startDate | ISO 8601 timestamp | Date and time the meeting begins, in ISO 8601 format. |
endDate | ISO 8601 timestamp | Date and time the meeting ends, in ISO 8601 format. |
attendees | User[] | List of users registered to attend the meeting. |
attendees.id | uuid | Unique identifier of the attendee. |
attendees.email | string | Email address of the attendee. |
attendees.firstName | string | First name of the attendee. |
attendees.lastName | string | Last name of the attendee. |
attendees.externalCustomerId | uuid | External customer identifier associated with the attendee. |