action zoom_dashboard_meeting_detail { label: "Get meeting details" description: "Get details on live or past meetings. This overview will show if features such as audio, video, screen sharing, and recording were being used in the meeting. You can also see the license types of each user on your account.
You can specify a monthly date range for the dashboard data using the `from` and `to` query parameters. The month should fall within the last six months.
\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}" encoding: json input: { type: "object" properties: { meetingId: { type: "string" } type: { type: "string" enum: ["past", "pastOne", "live"] } } required: ["meetingId"] additionalProperties: false } output: { type: "object" description: "Meeting metric details." properties: { custom_keys: { type: "array" description: "Custom keys and values assigned to the meeting." items: { type: "object" properties: { key: { type: "string" description: "Custom key associated with the meetinh." } value: { type: "string" description: "Value of the custom key associated with the meeting." } } } } dept: { type: "string" description: "Department of the host." } duration: { type: "string" description: "Meeting duration." } email: { type: "string" description: "Email address of the host." } end_time: { type: "string" format: "date-time" description: "Meeting end time." } has_3rd_party_audio: { type: "boolean" description: "Indicates whether or not [third party audio](https://support.zoom.us/hc/en-us/articles/202470795-3rd-Party-Audio-Conference) was used in the meeting." } has_pstn: { type: "boolean" description: "Indicates whether or not the PSTN was used in the meeting." } has_recording: { type: "boolean" description: "Indicates whether or not the recording feature was used in the meeting. " } has_screen_share: { type: "boolean" description: "Indicates whether or not screenshare feature was used in the meeting." } has_sip: { type: "boolean" description: "Indicates whether or not someone joined the meeting using SIP." } has_video: { type: "boolean" description: "Indicates whether or not video was used in the meeting." } has_voip: { type: "boolean" description: "Indicates whether or not VoIP was used in the meeting." } host: { type: "string" description: "Host display name." } id: { type: "integer" format: "int64" description: "[Meeting ID](https://support.zoom.us/hc/en-us/articles/201362373-What-is-a-Meeting-ID-): Unique identifier of the meeting in \"**long**\" format(represented as int64 data type in JSON), also known as the meeting number." } in_room_participants: { type: "integer" description: "The number of Zoom Room participants in the meeting." } participants: { type: "integer" description: "Meeting participant count." } start_time: { type: "string" format: "date-time" description: "Meeting start time." } topic: { type: "string" description: "Meeting topic." } user_type: { type: "string" description: "License type of the user." } uuid: { type: "string" format: "uuid" description: "Meeting UUID. Please double encode your UUID when using it for API calls if the UUID begins with a '/'or contains '//' in it." } } } }