Create a new engagement
As in the web application, you can create an engagement using the Python SDK.- See Organizations for how to create the
serverand create an organization. - It is assumed you have imported the module with
import mindbridgeapi as mbapi.
Retrieving an engagement by ID
You can retrieve an existing engagement byid. The example below uses the id of the engagement you created above.
Querying engagements
Query engagements, optionally applying a filter. Engagements can be searched using the MindBridge Query Language, as described in the MindBridge API Reference. Theget function returns a generator, allowing you to iterate over search results or use the next() function.
To list engagements for an existing organization, use the engagements property of the organization, which yields a generator of engagements within that organization.

