action zoom_dashboard_meeting_participant_share {
label: "Get sharing/recording details"
description: "Retrieve the sharing and recording details of participants from live or past meetings.
\n**Scopes:** `dashboard_meetings:read:admin`
\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Heavy`
\n**Prerequisites:**
\n* Business or a higher plan."
provider: zoom
method: GET
path: "/metrics/meetings/{meetingId}/participants/sharing"
encoding: json
input: {
type: "object"
properties: {
meetingId: {
type: "string"
}
next_page_token: {
type: "string"
}
page_size: {
type: "integer"
}
type: {
type: "string"
enum: ["past", "pastOne", "live"]
}
}
required: ["meetingId"]
additionalProperties: false
}
output: {
type: "object"
}
}