{ "opencollection": "1.0.0", "info": { "name": "Nomos Authentication Customers API", "version": "2026-05-27.curie" }, "items": [ { "info": { "name": "Customers", "type": "folder" }, "items": [ { "info": { "name": "Retrieve a customer", "type": "http" }, "http": { "method": "GET", "url": "https://api.nomos.energy/customers/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve customer details by their id" }, { "info": { "name": "Update a customer", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.nomos.energy/customers/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update the editable fields of a customer. Only `first_name` and `last_name` may be changed; both are optional so a request may update just one. Returns the updated customer." }, { "info": { "name": "List customers", "type": "http" }, "http": { "method": "GET", "url": "https://api.nomos.energy/customers", "params": [ { "name": "cursor", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "filter[field][operator]", "value": "", "type": "query", "description": "**Filterable fields:**\n- `email` (string)\n- `type` (string)\n- `created_at` (date)\n\nSee [Filtering Documentation](https://docs.nomos.energy/guides/filtering) for supported operators and syntax." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve all customers with cursor pagination" } ] } ], "bundled": true }