Skip to content

1.0.0

Compare
Choose a tag to compare
@joelmichael joelmichael released this 18 Dec 00:40
6eb9d6a

The 1.0 release and a major refactor of all endpoint definitions.

Breaking Change

  • The user_create endpoint now requires its arguments to match the actual Zoom API.
    This is done to simplify the code and encourage consistency.
    This means that instead of passing:
    {
      action: 'create',
      email: '[email protected]',
      type: 1,
      first_name: 'Zoomie',
      last_name: 'Userton',
      password: 'testerino'
    }
    
    You will instead have to pass:
    {
      action: 'create',
      user_info: {
        email: '[email protected]',
        type: 1,
        first_name: 'Zoomie',
        last_name: 'Userton',
        password: 'testerino'
      }
    }
    
    Zoom API reference for user creation: https://marketplace.zoom.us/docs/api-reference/zoom-api/users/usercreate

New features

  • Greatly simplified new syntax when adding endpoints. This reduces repetition and makes it easier.
  • On user_settings_get, permit option and custom_query_fields.
  • Add group_create and group_update.