Jump to: navigation, search

Difference between revisions of "StoryBoard/RestAPI"

(Storyboard Rest API description)
 
(Rest API)
Line 1: Line 1:
= Rest API =
 
 
== Project Group Operations ==
 
== Project Group Operations ==
 +
{| class="wikitable"
 +
|-
 +
! HTTP Method !! URL !! Description !! Required Permissions
 +
|-
 +
| GET || /project_groups || Returns a list of all existing Project Groups. || none
 +
|-
 +
| GET || /project_groups/(group_name) || Returns a Project Group by it's name. || none
 +
|-
 +
| POST || /project_groups || Creates a new Project Group. || Authorized, StoryboardAdmin
 +
|-
 +
| PUT || /project_groups/(group_name) || Updates a Project Group named (group_name) with new properties. || Authorized, StoryboardAdmin
 +
|-
 +
| DELETE || /project_groups/(group_name) || Deletes a Project Group named (group_name) || Authorized, StoryboardAdmin
 +
|}

Revision as of 12:02, 26 November 2013

Project Group Operations

HTTP Method URL Description Required Permissions
GET /project_groups Returns a list of all existing Project Groups. none
GET /project_groups/(group_name) Returns a Project Group by it's name. none
POST /project_groups Creates a new Project Group. Authorized, StoryboardAdmin
PUT /project_groups/(group_name) Updates a Project Group named (group_name) with new properties. Authorized, StoryboardAdmin
DELETE /project_groups/(group_name) Deletes a Project Group named (group_name) Authorized, StoryboardAdmin