Setting
Jump to navigation
Jump to search
REST Operations
GET
URI | Parameter | Accept Types | Result | Status Codes |
---|---|---|---|---|
/setting | text/html
application/json |
List of all settings. | 200 - OK
500 - Internal Server Error | |
/setting/<id> | text/html
application/json |
The setting identified by the URI. | 200 - OK
404 - Not Found 500 - Internal Server Error |
POST
URI | Parameter | Accept Types | Result | Status Codes |
---|---|---|---|---|
/setting | settingName
packages[] - URIs of packages to include |
Create a new Setting. The redirect points to the URI of the new Setting. | 303 - See Other
500 - Internal Server Error | |
/setting/<id> | settingName | Modify the setting identified by the URI. | 200 - OK | |
addedPackages[] - URIs of packages to add | 404 - Not Found | |||
removedPackages[] - URIs of packages to remove | 500 - Internal Server Error |
DELETE
URI | Parameter | Accept Types | Result | Status Codes |
---|---|---|---|---|
/setting/<id> | Delete the setting identified by the URI. | 303 - See Other | ||
404 - Not Found | ||||
500 - Internal Server Error |
PUT
Not Implemented.