{ "opencollection": "1.0.0", "info": { "name": "Buttondown Snippets API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Snippets", "type": "folder" }, "items": [ { "info": { "name": "List Snippets", "type": "http" }, "http": { "method": "GET", "url": "https://api.buttondown.com/v1/snippets", "params": [ { "name": "page", "value": "1", "type": "query", "description": "The page number of the paginated response." } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "List all snippets" }, { "info": { "name": "Create Snippet", "type": "http" }, "http": { "method": "POST", "url": "https://api.buttondown.com/v1/snippets", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Create a new snippet" }, { "info": { "name": "Retrieve Snippet", "type": "http" }, "http": { "method": "GET", "url": "https://api.buttondown.com/v1/snippets/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Retrieve a single snippet." }, { "info": { "name": "Update Snippet", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.buttondown.com/v1/snippets/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Update a snippet." }, { "info": { "name": "Delete Snippet", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.buttondown.com/v1/snippets/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Delete a snippet." } ] } ], "bundled": true }