{ "opencollection": "1.0.0", "info": { "name": "Open Liberty APIs Applications Topics API", "version": "24.0.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Topics", "type": "folder" }, "items": [ { "info": { "name": "List Topics", "type": "http" }, "http": { "method": "GET", "url": "https://localhost:9443/admin/qmgr/:qmgrName/topic", "params": [ { "name": "qmgrName", "value": "", "type": "path", "description": "Queue manager name" }, { "name": "name", "value": "Example Title", "type": "query", "description": "Topic name filter" } ] }, "docs": "Returns a list of administrative topic objects on the queue manager." }, { "info": { "name": "Create a Topic", "type": "http" }, "http": { "method": "POST", "url": "https://localhost:9443/admin/qmgr/:qmgrName/topic", "params": [ { "name": "qmgrName", "value": "", "type": "path", "description": "Queue manager name" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new administrative topic object." }, { "info": { "name": "Get Topic Details", "type": "http" }, "http": { "method": "GET", "url": "https://localhost:9443/admin/qmgr/:qmgrName/topic/:topicName", "params": [ { "name": "qmgrName", "value": "", "type": "path", "description": "Queue manager name" }, { "name": "topicName", "value": "example_value", "type": "path", "description": "Topic object name" } ] }, "docs": "Returns details of a specific administrative topic object." }, { "info": { "name": "Delete a Topic", "type": "http" }, "http": { "method": "DELETE", "url": "https://localhost:9443/admin/qmgr/:qmgrName/topic/:topicName", "params": [ { "name": "qmgrName", "value": "", "type": "path", "description": "Queue manager name" }, { "name": "topicName", "value": "example_value", "type": "path" } ] }, "docs": "Deletes an administrative topic object." } ] } ], "bundled": true }