Skip to content
Ranjan Kumar edited this page Jun 15, 2014 · 9 revisions

Workspace

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}

Clone this wiki locally