{ "opencollection": "1.0.0", "info": { "name": "Canix Facilities API", "version": "1.3.10" }, "request": { "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "items": [ { "info": { "name": "Facilities", "type": "folder" }, "items": [ { "info": { "name": "GetFacilities", "type": "http" }, "http": { "method": "GET", "url": "https://api.canix.com/api/v1/facilities", "params": [ { "name": "facility_id", "value": "123", "type": "query", "description": "Facility ID (optional)" }, { "name": "limit", "value": "", "type": "query", "description": "Max number of records to return (optional). Cannot exceed 2000" }, { "name": "offset", "value": "", "type": "query", "description": "Offset for the returned records (optional)" }, { "name": "order_by", "value": "", "type": "query", "description": "Order-by clause, in SQL format (optional)" }, { "name": "where", "value": "", "type": "query", "description": "Filter results using SQL-like WHERE clause syntax (optional).\n\n**Supported operators**: =, >, <, >=, <=, BETWEEN, IN, LIKE, AND, OR\n\n**Supported patterns**:\n- Equality: `status='Active'`\n- Comparison: `updated_at >= '2024-01-01'`\n- Range: `id BETWEEN 1 AND 10000`\n- List: `status IN ('Active', 'Pending')`\n- Pattern: `sku LIKE 'ABC%'`\n- Compound: `facility_id=123 AND is_active=true`\n" } ] }, "docs": "Return Facilities" }, { "info": { "name": "GetFacility", "type": "http" }, "http": { "method": "GET", "url": "https://api.canix.com/api/v1/facilities/:facility_id", "params": [ { "name": "facility_id", "value": "", "type": "path", "description": "Facility ID" } ] }, "docs": "Get Facility by ID" } ] } ], "bundled": true }