Skip to main content
POST
/
v1
/
incidents
/
{incident_id}
/
meeting_recordings
/
import
Import a meeting recording
curl --request POST \
  --url https://api.rootly.com/v1/incidents/{incident_id}/meeting_recordings/import \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '
{
  "recall_recording_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "started_at": "2023-11-07T05:31:56Z",
  "ended_at": "2023-11-07T05:31:56Z",
  "meeting_url": "<string>"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

incident_id
string
required

Incident UUID

Body

application/vnd.api+json
source
enum<string>
required

Import source (currently only "recall_desktop_sdk")

Available options:
recall_desktop_sdk
recall_recording_id
string<uuid>
required

External recording UUID (required when source is recall_desktop_sdk)

platform
enum<string>
required

Meeting platform

Available options:
zoom,
google_meet,
microsoft_teams,
webex
started_at
string<date-time> | null

When the recording started

ended_at
string<date-time> | null

When the recording ended

meeting_url
string | null

Original meeting URL

Response

recording imported