|  |  | _Seznam uživatelů se stránkováním_ | 
|  |  |  | 
|  |  | **URL:** /api/v1/users | 
|  |  |  | 
|  |  | **Method:** GET | 
|  |  |  | 
|  |  | **Headers:** | 
|  |  |  | 
|  |  | - Accept: application/json | 
|  |  | - Authorization: Auth User Bearer Token nebo API Bearer Token | 
|  |  |  | 
|  |  | **Vrací JSON:** | 
|  |  | ```json | 
|  |  | { | 
|  |  | "data": [ | 
|  |  | { | 
|  |  | "id": "1", | 
|  |  | "public_name": "Jakub", | 
|  |  | "profile_photo_url": "http:\/\/portal.desettisickroku.local\/storage\/profile-photos\/e2lmPlTMMr4uoDFWhTAHRXdoZzQ7QbUTsfBXPxA8.jpg", | 
|  |  | "points": "23.16", | 
|  |  | "distance": 44552, | 
|  |  | "steps": 48582, | 
|  |  | "city": { | 
|  |  | "id": 502545 | 
|  |  | }, | 
|  |  | "is_premium": true, | 
|  |  | "teams": [ | 
|  |  | { | 
|  |  | "id": 391 | 
|  |  | }, | 
|  |  | { | 
|  |  | "id": 1572 | 
|  |  | } | 
|  |  |  | 
|  |  | ], | 
|  |  | "badge_icons": [ | 
|  |  | { | 
|  |  | "key": "recordman", | 
|  |  | "title": "Rekordman", | 
|  |  | "image": "http:\/\/portal.desettisickroku.local\/storage\/badges\/api\/recordman-2.png", | 
|  |  | "image_filename": "recordman-2.png", | 
|  |  | "active": true | 
|  |  | }, | 
|  |  | { | 
|  |  | "key": "stepper", | 
|  |  | "title": "Krokař", | 
|  |  | "image": "http:\/\/portal.desettisickroku.local\/storage\/badges\/api\/stepper-0.png", | 
|  |  | "image_filename": "stepper-0.png", | 
|  |  | "active": false | 
|  |  | }, | 
|  |  | { | 
|  |  | "key": "regularity", | 
|  |  | "title": "Pravidelnost", | 
|  |  | "image": "http:\/\/portal.desettisickroku.local\/storage\/badges\/api\/regularity-0.png", | 
|  |  | "image_filename": "regularity-0.png", | 
|  |  | "active": false | 
|  |  | }, | 
|  |  | { | 
|  |  | "key": "multiactivity", | 
|  |  | "title": "Multiaktivita", | 
|  |  | "image": "http:\/\/portal.desettisickroku.local\/storage\/badges\/api\/multiactivity-0.png", | 
|  |  | "image_filename": "multiactivity-0.png", | 
|  |  | "active": false | 
|  |  | }, | 
|  |  | { | 
|  |  | "key": "challenger", | 
|  |  | "title": "Osobní výzva", | 
|  |  | "image": "http:\/\/portal.desettisickroku.local\/storage\/badges\/api\/challenger-3-0.png", | 
|  |  | "image_filename": "challenger-3-0.png", | 
|  |  | "active": false | 
|  |  | } | 
|  |  | ] | 
|  |  | }, | 
|  |  | ... | 
|  |  | ], | 
|  |  | "links": { | 
|  |  | "first": "http:\/\/portal.desettisickroku.local\/api\/v1\/users?page=1", | 
|  |  | "last": "http:\/\/portal.desettisickroku.local\/api\/v1\/users?page=62", | 
|  |  | "prev": null, | 
|  |  | "next": "http:\/\/portal.desettisickroku.local\/api\/v1\/users?page=2" | 
|  |  | }, | 
|  |  | "meta": { | 
|  |  | "current_page": 1, | 
|  |  | "from": 1, | 
|  |  | "last_page": 62, | 
|  |  | "links": [ | 
|  |  | { | 
|  |  | "url": null, | 
|  |  | "label": "« Předchozí", | 
|  |  | "active": false | 
|  |  | }, | 
|  |  | { | 
|  |  | "url": "http:\/\/portal.desettisickroku.local\/api\/v1\/users?page=1", | 
|  |  | "label": "1", | 
|  |  | "active": true | 
|  |  | }, | 
|  |  | ... | 
|  |  | ], | 
|  |  | "path": "http:\/\/portal.desettisickroku.local\/api\/v1\/users", | 
|  |  | "per_page": 50, | 
|  |  | "to": 50, | 
|  |  | "total": 3096 | 
|  |  | } | 
|  |  | } | 
|  |  | ``` | 
|  |  |  | 
|  |  | Popis parametrů uživatelů (`data`) je shodný s [Auth User Info](Auth-User-Info-v2) | 
|  |  |  | 
|  |  | V parametrech `links` a `meta` jsou údaje pro stránkování. | 
|  |  | \ No newline at end of file |