Changes between Version 9 and Version 10 of RestfulAPI


Ignore:
Timestamp:
02/15/08 13:21:51 (6 years ago)
Author:
johnbywater
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RestfulAPI

    v9 v10  
    2323  
    2424|| '''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 || 
    2929 
    3030== Status Codes == 
    3131  
    3232|| '''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 || 
    3737 
    3838----