{ "opencollection": "1.0.0", "info": { "name": "Buttondown Forms API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Forms", "type": "folder" }, "items": [ { "info": { "name": "List Forms", "type": "http" }, "http": { "method": "GET", "url": "https://api.buttondown.com/v1/forms", "params": [ { "name": "status", "value": "active", "type": "query", "description": "If provided, only return forms with the given status." }, { "name": "-status", "value": "disabled", "type": "query", "description": "If provided, only return forms without the given status." }, { "name": "admin", "value": "", "type": "query", "description": "If provided, filter by admin-only flag." }, { "name": "ordering", "value": "-creation_date", "type": "query", "description": "The ordering to apply to the results." }, { "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 forms" }, { "info": { "name": "Create Form", "type": "http" }, "http": { "method": "POST", "url": "https://api.buttondown.com/v1/forms", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Create a new form" }, { "info": { "name": "Retrieve Form", "type": "http" }, "http": { "method": "GET", "url": "https://api.buttondown.com/v1/forms/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Retrieve a specific form by its ID" }, { "info": { "name": "Update Form", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.buttondown.com/v1/forms/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Update a form's properties" }, { "info": { "name": "Delete Form", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.buttondown.com/v1/forms/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Delete a form" } ] } ], "bundled": true }