Edits history of script submission #6132 for ' View User (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, userid: string) {
    	const client = zoomApi(resource)
    	const createdUser = await client.users.GetUser(userid)
    	return createdUser
    }
    

    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, userid: string) {
    	const client = zoomApi(resource)
    	const createdUser = await client.users.GetUser(userid)
    	return createdUser
    }
    

    Submitted by hugo697 764 days ago