Changes between Version 9 and Version 10 of RestfulAPI
- Timestamp:
- 02/15/08 13:21:51 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RestfulAPI
v9 v10 23 23 24 24 || '''Action''' || '''Methods''' || 25 || list /|| GET ||26 || create /|| POST ||27 || update /|| POST ||28 || read /|| GET ||25 || list || GET || 26 || create || POST || 27 || update || POST || 28 || read || GET || 29 29 30 30 == Status Codes == 31 31 32 32 || '''Action-Method''' || '''Success''' || '''Exception''' || 33 || list /GET || 200 || 400 Invalid Request, 404 Not Found ||34 || create /POST || 200 || 400 Invalid Request, 409 Conflict ||35 || update /POST || 200 || 400 Invalid Request ||36 || read /GET || 200 || 404 Not Found ||33 || list GET || 200 || 400 Invalid Request, 404 Not Found || 34 || create POST || 200 || 400 Invalid Request, 409 Conflict || 35 || update POST || 200 || 400 Invalid Request || 36 || read GET || 200 || 404 Not Found || 37 37 38 38 ----