{ "opencollection": "1.0.0", "info": { "name": "F5 BIG-IP iControl REST Nodes API", "version": "15.1.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Nodes", "type": "folder" }, "items": [ { "info": { "name": "List All Nodes", "type": "http" }, "http": { "method": "GET", "url": "https://{bigip_host}/mgmt/tm/ltm/node", "params": [ { "name": "$select", "value": "name,destination,pool", "type": "query", "description": "Comma-separated list of property names to include in the response." }, { "name": "$filter", "value": "partition eq Common", "type": "query", "description": "OData filter expression to restrict returned resources." }, { "name": "$top", "value": "10", "type": "query", "description": "Maximum number of resources to return." }, { "name": "$skip", "value": "0", "type": "query", "description": "Number of resources to skip before returning results." } ] }, "docs": "Returns a collection of all node resources configured on the BIG-IP system." }, { "info": { "name": "Create a Node", "type": "http" }, "http": { "method": "POST", "url": "https://{bigip_host}/mgmt/tm/ltm/node", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new node resource on the BIG-IP system. The name and address are required for creation." }, { "info": { "name": "Get a Node", "type": "http" }, "http": { "method": "GET", "url": "https://{bigip_host}/mgmt/tm/ltm/node/:nodeName", "params": [ { "name": "nodeName", "value": "10.0.0.1", "type": "path", "description": "Name of the node resource. Can be the IP address or a user-defined name." } ] }, "docs": "Returns a single node resource identified by name." }, { "info": { "name": "Update a Node", "type": "http" }, "http": { "method": "PUT", "url": "https://{bigip_host}/mgmt/tm/ltm/node/:nodeName", "params": [ { "name": "nodeName", "value": "10.0.0.1", "type": "path", "description": "Name of the node resource. Can be the IP address or a user-defined name." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Replaces the entire node resource configuration." }, { "info": { "name": "Patch a Node", "type": "http" }, "http": { "method": "PATCH", "url": "https://{bigip_host}/mgmt/tm/ltm/node/:nodeName", "params": [ { "name": "nodeName", "value": "10.0.0.1", "type": "path", "description": "Name of the node resource. Can be the IP address or a user-defined name." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Partially updates a node resource configuration." }, { "info": { "name": "Delete a Node", "type": "http" }, "http": { "method": "DELETE", "url": "https://{bigip_host}/mgmt/tm/ltm/node/:nodeName", "params": [ { "name": "nodeName", "value": "10.0.0.1", "type": "path", "description": "Name of the node resource. Can be the IP address or a user-defined name." } ] }, "docs": "Removes a node resource from the BIG-IP system. The node must not be referenced by any pool member." } ] } ], "bundled": true }