-
Notifications
You must be signed in to change notification settings - Fork 151
Workspace
ranjan-rk edited this page Dec 30, 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
Getting workspace by Id
GET http://localhost:8080/api/workspaces/{workspaceId}
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}