{ "opencollection": "1.0.0", "info": { "name": "Apache APISIX Admin Consumer Groups Routes API", "version": "3.14.0" }, "request": { "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "items": [ { "info": { "name": "Routes", "type": "folder" }, "items": [ { "info": { "name": "Apache APISIX List All Routes", "type": "http" }, "http": { "method": "GET", "url": "http://127.0.0.1:9180/apisix/admin/routes" }, "docs": "Fetches a list of all configured routes." }, { "info": { "name": "Apache APISIX Create a Route", "type": "http" }, "http": { "method": "POST", "url": "http://127.0.0.1:9180/apisix/admin/routes", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new route with a server-generated ID." }, { "info": { "name": "Apache APISIX Get a Route", "type": "http" }, "http": { "method": "GET", "url": "http://127.0.0.1:9180/apisix/admin/routes/:route_id", "params": [ { "name": "route_id", "value": "", "type": "path", "description": "Unique identifier of the route." } ] }, "docs": "Fetches the specified route by its ID." }, { "info": { "name": "Apache APISIX Create or Update a Route", "type": "http" }, "http": { "method": "PUT", "url": "http://127.0.0.1:9180/apisix/admin/routes/:route_id", "params": [ { "name": "route_id", "value": "", "type": "path", "description": "Unique identifier of the route." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a route with the specified ID, or updates it if it already exists." }, { "info": { "name": "Apache APISIX Patch a Route", "type": "http" }, "http": { "method": "PATCH", "url": "http://127.0.0.1:9180/apisix/admin/routes/:route_id", "params": [ { "name": "route_id", "value": "", "type": "path", "description": "Unique identifier of the route." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates partial attributes of the specified route." }, { "info": { "name": "Apache APISIX Delete a Route", "type": "http" }, "http": { "method": "DELETE", "url": "http://127.0.0.1:9180/apisix/admin/routes/:route_id", "params": [ { "name": "route_id", "value": "", "type": "path", "description": "Unique identifier of the route." } ] }, "docs": "Removes the specified route." } ] } ], "bundled": true }