Retrieve a paginated list of vendedores (sellers). Accessible by all authenticated users.
cURL
curl --request GET \ --url https://api.example.com/api/v1/vendedores
{ "success": true, "data": [ { "id": "770e8400-e29b-41d4-a716-446655440000", "name": "Carlos Martínez", "username": "cmartinez", "email": "[email protected]", "phone": "8091234567", "role": "VENDEDOR", "ventanaId": "660e8400-e29b-41d4-a716-446655440000", "code": "CM001", "isActive": true, "settings": { "theme": "dark", "print": { "width": 58, "barcode": true } }, "platform": "android", "appVersion": "2.0.7", "createdAt": "2024-03-15T13:00:00Z", "updatedAt": "2024-03-15T13:00:00Z" } ], "meta": { "page": 1, "pageSize": 20, "total": 1, "totalPages": 1 } }
Show Vendedor object
Show Meta object