Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 1.46 KB

README.md

File metadata and controls

29 lines (24 loc) · 1.46 KB

Restful service examples

All examples implement same restful service as below

method url desc
GET /v1/pet Get all pets
GET /v1/pet/{id} Find pet by id
GET /v1/pet/findByCategory/{category} Find pets by category
POST /v1/pet Add a new pet
PUT /v1/pet/{id} Update a pet
Delete /v1/pet/{id} Delete a pet

Table of Contents