{ "opencollection": "1.0.0", "info": { "name": "Boltic Gateway Certificates Routes API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Routes", "type": "folder" }, "items": [ { "info": { "name": "Boltic List all routes", "type": "http" }, "http": { "method": "GET", "url": "https://gateway.boltic.io/v1/routes", "params": [ { "name": "page", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ] }, "docs": "Retrieve a list of all configured API routes in the gateway." }, { "info": { "name": "Boltic Create a new route", "type": "http" }, "http": { "method": "POST", "url": "https://gateway.boltic.io/v1/routes", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new API route with specified routing rules and target service." }, { "info": { "name": "Boltic Get a route by ID", "type": "http" }, "http": { "method": "GET", "url": "https://gateway.boltic.io/v1/routes/:routeId", "params": [ { "name": "routeId", "value": "", "type": "path" } ] }, "docs": "Retrieve details of a specific route." }, { "info": { "name": "Boltic Update a route", "type": "http" }, "http": { "method": "PUT", "url": "https://gateway.boltic.io/v1/routes/:routeId", "params": [ { "name": "routeId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update the configuration of an existing route." }, { "info": { "name": "Boltic Delete a route", "type": "http" }, "http": { "method": "DELETE", "url": "https://gateway.boltic.io/v1/routes/:routeId", "params": [ { "name": "routeId", "value": "", "type": "path" } ] }, "docs": "Remove an existing route from the gateway." } ] } ], "bundled": true }