{ "opencollection": "1.0.0", "info": { "name": "Zazmic Platform API Info Clients API", "version": "1.0.0" }, "items": [ { "info": { "name": "Clients", "type": "folder" }, "items": [ { "info": { "name": "Get all clients", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/clients", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number (default: 1)" }, { "name": "limit", "value": "", "type": "query", "description": "Items per page (default: 10, max: 100)" }, { "name": "name", "value": "", "type": "query", "description": "Filter by name (partial match)" }, { "name": "active", "value": "", "type": "query", "description": "Filter by active status" } ], "auth": { "type": "apikey", "key": "X-API-Key", "value": "{{X-API-Key}}", "placement": "header" } }, "docs": "Retrieves all SMB client accounts with pagination and filtering" }, { "info": { "name": "Create a new client", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/clients", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "X-API-Key", "value": "{{X-API-Key}}", "placement": "header" } }, "docs": "Creates a new SMB client account" }, { "info": { "name": "Get client by ID", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/clients/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Client UUID" } ], "auth": { "type": "apikey", "key": "X-API-Key", "value": "{{X-API-Key}}", "placement": "header" } }, "docs": "Retrieves a single client account by ID" }, { "info": { "name": "Update client", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/api/clients/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Client UUID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "X-API-Key", "value": "{{X-API-Key}}", "placement": "header" } }, "docs": "Updates an existing client account (partial update)" }, { "info": { "name": "Disable client", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/clients/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Client UUID" }, { "name": "force", "value": "", "type": "query", "description": "Force deletion even with dependent records" } ], "auth": { "type": "apikey", "key": "X-API-Key", "value": "{{X-API-Key}}", "placement": "header" } }, "docs": "Disables a client account (soft delete by setting active=false). Matches legacy API behavior." } ] } ], "bundled": true }