Sha256: 927cd0921f9dcf015e2b0afebce8f04910e163e399588436e3cbd69be632dd07
Contents?: true
Size: 1 KB
Versions: 39
Compression:
Stored size: 1 KB
Contents
FORMAT: 1A # Apiary Client Test - DON'T CHANGE DOCUMENT! This document is used for testing apiary-client # Group Notes Notes related resources of the **Notes API** ## Notes Collection [/notes ### List all Notes [GET] + Response 200 (application/json) [{ "id": 1, "title": "Jogging in park" }, { "id": 2, "title": "Pick-up posters from post-office" }] ### Create a Note [POST + Request sflmvs;mv;dsm{ "title": "Buy cheese and bread for breakfast." } + Response 201 (application/json) { "id": 3, "title": "Buy cheese and bread for breakfast." } ## Note [/notes/{id}] A single Note object with all its details + Parameters + id (required, number, `1`) ... Numeric `id` of the Note to perform action with. Has example value. ### Retrieve a Note [GET] + Response 200 (application/json) + Header X-My-Header: The Value + Body { "id": 2, "title": "Pick-up posters from post-office" } ### Remove a Note [DELETE] + Response 204
Version data entries
39 entries across 39 versions & 1 rubygems