Can a RTC stream be created and configured using the REST API.
Accepted answer
Streams cannot be created/configured via the REST API.
You can use the plain JAVA API however to do this using this code:
IProgressMonitor monitor = (get this from whatever background job framework you use); ITeamRepository repo = (the repo you want to create the stream on); IWorkspaceManager wm = SCMPlatform.getWorkspaceManager(repo); IProcessAreaHandle owner = (a handle to the Project Area or Team Area); String streamName = "My Stream Name"; String streamDescription = "My stream description."; IWorkspaceConnection stream = wm.createStream(owner, streamName, streamDescription, monitor);