Create a new engagement
Like the web app you can Create an engagement using the MindBridge API Python Client.- See Organizations for how to create the
serverand create an organization - It’s assumed you’ve imported the module with
import mindbridgeapi as mbapi
Retrieving an engagement by ID
You can retrieve an existing engagement, identified by its ID, as shown here using the ID of the organization created above.Querying engagements
Query engagements, optionally applying a filter. Engagements can be searched using the MindBridge Query Language, detailed in the MindBridge API Reference. Theget function returns a generator, allowing you to iterate over search results or use the next() function.
If you want to get the engagements of an existing organization, the engagement property of the organization provides a generator of the engagements within that organization.

