{ "opencollection": "1.0.0", "info": { "name": "Buttondown Books API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Books", "type": "folder" }, "items": [ { "info": { "name": "List Books", "type": "http" }, "http": { "method": "GET", "url": "https://api.buttondown.com/v1/books", "params": [ { "name": "page", "value": "", "type": "query", "description": "The page number of the paginated response." } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "List all books for the authenticated newsletter" }, { "info": { "name": "Create Book", "type": "http" }, "http": { "method": "POST", "url": "https://api.buttondown.com/v1/books", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Create a new book" }, { "info": { "name": "Retrieve Book", "type": "http" }, "http": { "method": "GET", "url": "https://api.buttondown.com/v1/books/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Retrieve a specific book by its ID" }, { "info": { "name": "Update Book", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.buttondown.com/v1/books/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Update a book's properties" }, { "info": { "name": "Delete Book", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.buttondown.com/v1/books/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Delete a book" } ] } ], "bundled": true }