|
|
|
_Seznam měst_
|
|
|
|
|
|
|
|
**URL:** /api/v1/districts
|
|
|
|
|
|
|
|
**Method:** GET
|
|
|
|
|
|
|
|
**Vrací JSON:**
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"data": [
|
|
|
|
{
|
|
|
|
"id": 1,
|
|
|
|
"title": "Benešov",
|
|
|
|
"points_total": "0.00",
|
|
|
|
"points_avg": "0.00",
|
|
|
|
"points_avg_alpha": "0.00",
|
|
|
|
"points_total_top": "0.00",
|
|
|
|
"points_avg_top": "0.00",
|
|
|
|
"points_avg_population": "0.00",
|
|
|
|
"distance": 0,
|
|
|
|
"total_users": 0,
|
|
|
|
"active_teams": 0,
|
|
|
|
"is_participating": true,
|
|
|
|
"coordinator": {
|
|
|
|
"id": 4,
|
|
|
|
"email": "jarda@dobramesta.cz",
|
|
|
|
"name": "Jari Kurri",
|
|
|
|
"profile_photo_url": "http:\/\/portal.desettisickroku.local\/storage\/profile-photos\/PBcWVT0qX7sfnvaXkzroPQZiJVwBEZqBVNSdevgK.jpg"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 2,
|
|
|
|
"title": "Beroun",
|
|
|
|
"points_total": "0.00",
|
|
|
|
"points_avg": "0.00",
|
|
|
|
"points_avg_alpha": "0.00",
|
|
|
|
"points_total_top": "0.00",
|
|
|
|
"points_avg_top": "0.00",
|
|
|
|
"points_avg_population": "0.00",
|
|
|
|
"distance": 0,
|
|
|
|
"total_users": 0,
|
|
|
|
"active_teams": 0,
|
|
|
|
"is_participating": false,
|
|
|
|
"coordinator": null
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
| Parametr | Typ | Povinný | Popis |
|
|
|
|
|----------|-----|---------|-------|
|
|
|
|
| id | int | A | ID |
|
|
|
|
| title | string | A | Název |
|
|
|
|
| points_total | string | N | Počet bodů |
|
|
|
|
| points_avg | string | N | Počet bodů - průměr |
|
|
|
|
| points_avg_alpha | string | N | Počet bodů - průměr ze středu |
|
|
|
|
| points_total_top | string | N | Počet bodů - součet top jednotlivců |
|
|
|
|
| points_avg_top | string | N | Počet bodů - průměr z top jednotlivců |
|
|
|
|
| points_avg_population | string | N | Počet bodů - průměr z počtu obyvatel |
|
|
|
|
| distance | int | N | Vzdálenost v metrech |
|
|
|
|
| total_users | int | N | Celkem uživatelů |
|
|
|
|
| active_teams | int | N | Aktivních týmů |
|
|
|
|
| is_participating | bool | N | Zda-li je zapojené |
|
|
|
|
| coordinator | array | N | Koordinátor |
|
|
|
|
|
|
|
|
|
|
|
|
**coordinator:**
|
|
|
|
|
|
|
|
| Parametr | Typ | Povinný | Popis |
|
|
|
|
|----------|-----|---------|-------|
|
|
|
|
| id | int | A | ID |
|
|
|
|
| email | string | A | E-mail |
|
|
|
|
| name | string | A | Jméno |
|
|
|
|
| profile_photo_url | string | N | URL profilového obrázku | |
|
|
|
\ No newline at end of file |