{ "opencollection": "1.0.0", "info": { "name": "Stellar Cyber Open XDR Alerts Tenants API", "version": "6.3" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Tenants", "type": "folder" }, "items": [ { "info": { "name": "List Tenants", "type": "http" }, "http": { "method": "GET", "url": "https://{platformHostname}/connect/api/v1/tenants" }, "docs": "Retrieve all tenants available to the authenticated user." }, { "info": { "name": "Create Tenant", "type": "http" }, "http": { "method": "POST", "url": "https://{platformHostname}/connect/api/v1/tenants", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new tenant on the platform (Super Admin only)." }, { "info": { "name": "Get Tenant", "type": "http" }, "http": { "method": "GET", "url": "https://{platformHostname}/connect/api/v1/tenants/:tenantId", "params": [ { "name": "tenantId", "value": "", "type": "path", "description": "Unique identifier for the tenant" } ] }, "docs": "Retrieve details of a specific tenant." }, { "info": { "name": "Update Tenant", "type": "http" }, "http": { "method": "PUT", "url": "https://{platformHostname}/connect/api/v1/tenants/:tenantId", "params": [ { "name": "tenantId", "value": "", "type": "path", "description": "Unique identifier for the tenant" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update tenant configuration." }, { "info": { "name": "Delete Tenant", "type": "http" }, "http": { "method": "DELETE", "url": "https://{platformHostname}/connect/api/v1/tenants/:tenantId", "params": [ { "name": "tenantId", "value": "", "type": "path", "description": "Unique identifier for the tenant" } ] }, "docs": "Delete a tenant from the platform (Super Admin only)." } ] } ], "bundled": true }