티스토리 뷰

Study/RESTful

RESTful api HTTP header method

dev ms 2019. 4. 10. 23:41
반응형

 


MethodScopeSemantics

GET collection Retrieve all resources in a collection
GET resource Retrieve a single resource
HEAD collection Retrieve all resources in a collection (header only)
HEAD resource Retrieve a single resource (header only)
POST collection Create a new resource in a collection
PUT resource Update a resource
PATCH resource Update a resource
DELETE resource Delete a resource
OPTIONS any Return available HTTP methods and other options

 

 

 

출처 : http://restful-api-design.readthedocs.org/en/latest/methods.html

 

반응형

'Study > RESTful' 카테고리의 다른 글

RESTful (REpresentational State Transfer) API.  (0) 2019.04.10
RESTful API HTTP status 정리  (0) 2019.04.10
RESTFul 웹 서비스 관련  (0) 2019.04.10
RESTful (REpresentational State Transfer) API.  (0) 2016.04.07