Created
February 26, 2014 15:45
-
-
Save abtris/9232022 to your computer and use it in GitHub Desktop.
UV601
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FORMAT: 1A | |
# Test API | |
## Items [/items{?filter}] | |
+ Parameters | |
+ filter (optional, boolean) ... A filter on items | |
### List all Items [GET] | |
+ Response 200 (application/json) | |
[{"id":1, "name":"item1"},{"id":2, "name":"item2"}] | |
### Create a New Item [POST] | |
+ Request | |
{"name":"item3"} | |
+ Response 201 | |
{"status":"created", "id":3} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment