Creating a collaboration
In this section, you will learn how to use the client to create a new collaboration on the server.
client.organization.list(fields=['id', 'name'])collaboration_name = "fictional_collab"
organization_ids = [1,2] # the id's of the respective organizations
client.collaboration.create(name = collaboration_name,
organizations = organization_ids,
encrypted = True)Last updated
Was this helpful?