curl -X GET "https://api.openwearables.com/api/v1/users?page=1&limit=20&sort_by=created_at&sort_order=desc" \ -H "X-API-Key: your_api_key_here"
{ "items": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "created_at": "2024-01-15T10:30:00Z", "first_name": "John", "last_name": "Doe", "email": "[email protected]", "external_user_id": "ext_user_12345" }, { "id": "223e4567-e89b-12d3-a456-426614174001", "created_at": "2024-01-14T09:15:00Z", "first_name": "Jane", "last_name": "Smith", "email": "[email protected]", "external_user_id": null } ], "total": 45, "page": 1, "limit": 20, "pages": 3 }
Retrieve a paginated list of users with filtering, sorting, and search capabilities
X-API-Key: your_api_key_here
created_at
email
first_name
last_name
asc
desc
Show User object