Skip to content
ranjan-rk edited this page Dec 30, 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

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}
Clone this wiki locally