{ "opencollection": "1.0.0", "info": { "name": "Toro Horizon360 Crews Customers API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Customers", "type": "folder" }, "items": [ { "info": { "name": "List Customers", "type": "http" }, "http": { "method": "GET", "url": "https://api.horizon360.toro.com/v1/customers", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number for pagination" }, { "name": "limit", "value": "", "type": "query", "description": "Number of records per page" }, { "name": "search", "value": "", "type": "query", "description": "Search customers by name, email, or phone" } ] }, "docs": "Returns a paginated list of all customers for the account." }, { "info": { "name": "Create Customer", "type": "http" }, "http": { "method": "POST", "url": "https://api.horizon360.toro.com/v1/customers", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new customer record." }, { "info": { "name": "Get Customer", "type": "http" }, "http": { "method": "GET", "url": "https://api.horizon360.toro.com/v1/customers/:customerId", "params": [ { "name": "customerId", "value": "", "type": "path", "description": "Unique customer identifier" } ] }, "docs": "Retrieve a specific customer by ID." }, { "info": { "name": "Update Customer", "type": "http" }, "http": { "method": "PUT", "url": "https://api.horizon360.toro.com/v1/customers/:customerId", "params": [ { "name": "customerId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing customer record." }, { "info": { "name": "Delete Customer", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.horizon360.toro.com/v1/customers/:customerId", "params": [ { "name": "customerId", "value": "", "type": "path" } ] }, "docs": "Delete a customer record." } ] } ], "bundled": true }