Please see the full REST API documentation for API implementation details.
Resource: Deleted Meetings
A deleted meeting contains minimal information about a meeting that has been permanently deleted.
This resource is of use to consumers of the meeting_deleted
REST
hook, and is provided so that integrations that need to react
to the deletion of a meeting can do so. The resource itself
provides the meeting_id, date of deletion, and, if relevant,
meeting_series_id of the meeting. Integrations that make use of
meeting sources
can retrieve the meeting source as an embedded parameter.
Access note: Deleted meeting information can be accessed by room members in the room the meeting was in when it was deleted. Once a room has been deleted, this information is no longer available.
Properties
#Field | Type | Notes |
---|---|---|
event_id | integer | This is not the same as the meeting_id. |
meeting_id | integer | ID of the meeting that was deleted |
meeting_series_id | integer, null | Identifies the meeting series this meeting belonged to, if any |
room_id | tuple | meeting room: {room_id, name} |
deleted_ts | timestamp | Time of deletion of the meeting. Note that this resource does not supply create_ts and update_ts. |
Getting a Single Deleted Meeting
#GET /lucid/api/v1/deleted_meetings/:event_id
Note that the event_id is not the same as the ID of the meeting that was deleted. API
users are expected to obtain the resource URL for a deleted meeting from a meeting_deleted
rest
hook event.
Query parameter | Notes |
---|---|
embed |
Comma separated list of embeddables:
meeting_source
|
fields | See Field Filtering |
envelope | See Enveloping |
Sample Request
GET /lucid/api/v1/deleted_meetings/136851?embed=meeting_source
Content-Type: application/json; charset=utf-8 Content-Length: 515 X-Requestor: afarrell@lucidmeetings.com X-Rate-Limit-Limit: 100 X-Rate-Limit-Remaining: 98 X-Rate-Limit-Used: 2 X-Rate-Limit-Reset: 60
{ "id": 136851, "resource_url": "https://site.lucidmeetings.com/lucid/api/v1/deleted_meetings/136851", "event_id": 136851, "meeting_id": 6294, "room_id": { "value": 133, "display": "Meeting Room" }, "deleted_ts": { "value": 1581027052, "iso_8601": "2020-02-06T22:10:52Z", "pretty": { "time": "2:10 PM", "date": "February 6, 2020", "timezone": "Los Angeles" } }, "meeting_series_id": null, "meeting_source": { "resource_url": "https://site.lucidmeetings.com/lucid/api/v1/meeting_sources/708", "meeting_source_id": 708, "source_type": "google_event", "source_id": "51q2g53c44lq39h9iv959cpug7 afarrell@lucidmeetings.com", "member_id": 302 } }