{ "opencollection": "1.0.0", "info": { "name": "listmonk Bounces Lists API", "version": "4.1" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Lists", "type": "folder" }, "items": [ { "info": { "name": "Retrieve all lists.", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/api/lists", "params": [ { "name": "query", "value": "", "type": "query" }, { "name": "page", "value": "", "type": "query" }, { "name": "per_page", "value": "", "type": "query" } ] }, "docs": "Retrieve all lists." }, { "info": { "name": "Create a new list.", "type": "http" }, "http": { "method": "POST", "url": "http://localhost:9000/api/lists", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new list." }, { "info": { "name": "Delete multiple lists by ID.", "type": "http" }, "http": { "method": "DELETE", "url": "http://localhost:9000/api/lists", "params": [ { "name": "id", "value": "", "type": "query" } ] }, "docs": "Delete multiple lists by ID." }, { "info": { "name": "Retrieve a specific list.", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/api/lists/:list_id", "params": [ { "name": "list_id", "value": "", "type": "path" } ] }, "docs": "Retrieve a specific list." }, { "info": { "name": "Update an existing list.", "type": "http" }, "http": { "method": "PUT", "url": "http://localhost:9000/api/lists/:list_id", "params": [ { "name": "list_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing list." }, { "info": { "name": "Delete a specific list.", "type": "http" }, "http": { "method": "DELETE", "url": "http://localhost:9000/api/lists/:list_id", "params": [ { "name": "list_id", "value": "", "type": "path" } ] }, "docs": "Delete a specific list." }, { "info": { "name": "Retrieve public lists (unauthenticated, for subscription forms).", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9000/api/public/lists" }, "docs": "Retrieve public lists (unauthenticated, for subscription forms)." } ] } ], "bundled": true }