Edits history of script submission #6143 for ' Get Meeting Details (zoom)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    import zoomApi from 'zoomapi'
    
    type Zoom = {
    	accountId: string
    	oauthClientId: string
    	oauthClientSecret: string
    	webhookSecretToken: string
    }
    
    export async function main(resource: Zoom, meetingId: string) {
    	const client = zoomApi(resource)
    	const meeting = await client.meetings.GetMeeting(meetingId)
    	return meeting
    }
    

    Submitted by hugo697 399 days ago

  • bun
    import zoomApi from 'zoomapi'
    
    type Zoom = {
    	accountId: string
    	oauthClientId: string
    	oauthClientSecret: string
    	webhookSecretToken: string
    }
    
    export async function main(resource: Zoom, meetingId: string) {
    	const client = zoomApi(resource)
    	const meeting = await client.meetings.GetMeeting(meetingId)
    	return meeting
    }
    

    Submitted by hugo697 764 days ago