We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9ac306 commit 54b156bCopy full SHA for 54b156b
docs/user/quickstart.rst
@@ -468,6 +468,20 @@ contain all of the returned objects.
468
>>> rooms_list = list(rooms_iterable)
469
470
471
+
472
+Extending the API with bound methods
473
+------------------------------------
474
475
+Extending the API is simple by binding your own methods to the top level API. By binding a method to
476
+the WebexTeamsAPI, you can extend functionality and leverage all of the objects and quality of life
477
+features.
478
479
+.. code-block:: python
480
+ >>> new_function():
481
+ ... pass
482
+ >>> WebexTeamsAPI().new_function = new_function
483
+ >>> output = WebexTeamsAPI.new_function(params)
484
485
*Copyright (c) 2016-2019 Cisco and/or its affiliates.*
486
487
0 commit comments