Please see the full REST API documentation for API implementation details.

Resource: Deleted Meeting Series

A deleted meeting series contains minimal information about a meeting series that has been permanently deleted. This resource is of use to consumers of the meeting_series_deleted REST hook, and is provided so that integrations that need to react to the deletion of a meeting series can do so. The resource itself provides the meeting_series_id, and date of deletion of the meeting series. Integrations that make use of meeting series sources can retrieve the meeting series source as an embedded parameter.

Access note: Deleted meeting series information can be accessed by room members in the room the meeting series 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_series_id.
meeting_series_id integer ID of the meeting series that was deleted
room_id tuple meeting room: {room_id, name}
deleted_ts timestamp Time of deletion of the meeting series. Note that this resource does not supply create_ts and update_ts.

Getting a Single Deleted Meeting Series

#
GET /lucid/api/v1/deleted_meeting_seriess/:event_id

Note that the event_id is not the same as the ID of the meeting series that was deleted. API users are expected to obtain the resource URL for a deleted meeting series from a meeting_series_deleted rest hook event.

Query parameter Notes
embed Comma separated list of embeddables: meeting_series_source
fields See Field Filtering
envelope See Enveloping

Sample Request

GET /lucid/api/v1/deleted_meeting_series/136836?embed=meeting_series_source
Content-Type: application/json; charset=utf-8
Content-Length: 818
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": 136836,
    "resource_url": "https://site.lucidmeetings.com/lucid/api/v1/deleted_meeting_series/136836",
    "event_id": 136836,
    "meeting_series_id": 654,
    "room_id": {
        "value": 133,
        "display": "Meeting Room"
    },
    "deleted_ts": {
        "value": 1581026772,
        "iso_8601": "2020-02-06T22:06:12Z",
        "pretty": {
            "time": "2:06 PM",
            "date": "February 6, 2020",
            "timezone": "Los Angeles"
        }
    },
    "meeting_series_source": {
        "resource_url": "https://site.lucidmeetings.com/lucid/api/v1/meeting_series_sources/179",
        "meeting_series_source_id": 179,
        "source_type": "google_event",
        "source_id": "4bg1tkvbi6farqf42mountegig afarrell@secondrise.com",
        "member_id": 302
    }
}