-
Notifications
You must be signed in to change notification settings - Fork 147
Workspace
Ranjan Kumar edited this page Jun 15, 2014
·
9 revisions
A workspace is a collection of projects. Users can have private or shared workspaces.
Getting available workspaces
GET http://localhost:8080/api/workspaces
Creating a new workspace
POST http://localhost:8080/api/workspaces
{"name" : "New Workspace Name"}
Updating an existing workspace
PUT http://localhost:8080/api/workspaces/{workspaceId}
{ “id” : workspaceId, "name" : “Another Workspace"}
Deleting an existing worksapce
DELETE http://localhost:8080/api/workspaces/{workspaceId}