2022-01-28 12:58:48 +01:00
|
|
|
### request=stations_available
|
|
|
|
|
2022-01-28 21:41:10 +01:00
|
|
|
**request** GET of the available stations depending on the rental bike groups assigned to the registered user.
|
2022-01-28 12:58:48 +01:00
|
|
|
|
2022-01-28 20:53:03 +01:00
|
|
|
| key | Required | Format | Comment |
|
|
|
|
| ---------- | -------- | ------- | ----------------------------------- |
|
|
|
|
| authcookie | + | text>=8 | unique encrypted key OR merchant_id |
|
|
|
|
| station | o | text | station prefix+number |
|
|
|
|
|
2022-01-28 12:58:48 +01:00
|
|
|
**response** list of stations by JSON-Objects
|
|
|
|
|
|
|
|
| key | Required | Format | Comment |
|
|
|
|
| ------------- | -------- | -------- | ----------------------------------------------------- |
|
|
|
|
| state | + | text>=8 | available-state |
|
|
|
|
| description | o | text<=20 | short station description |
|
|
|
|
| gps | + | array | GPS: latitude, longitude |
|
|
|
|
| station | + | text | station prefix_number |
|
|
|
|
| station_group | + | array | station group |
|
|
|
|
| authed | o | text | return 1 if user is authenticated on operator |
|
|
|
|
| gps_radius | + | text | geofencing by meters around station, for bike return. |
|
|
|
|
| uri_operator | + | text | URI of Operator-Server |
|
|
|
|
| service_tour | o | text | service tour number |
|
|
|
|
| operator_data | o | object | operator values (see example) |
|
|
|
|
|
|
|
|
Example
|
|
|
|
**REST request=stations_available** for authorized users
|
|
|
|
```
|
|
|
|
https://shareeapp-primary.copri-bike.de/APIjsonserver?request=stations_available&authcookie=6103_0f667aa7f234fe317a2705ee89fde0c3_1234567998
|
|
|
|
```
|
|
|
|
|
2022-01-28 20:53:03 +01:00
|
|
|
**response** sharee JSON defaults + **response** multiple station objects
|
2022-01-28 12:58:48 +01:00
|
|
|
```
|
2022-01-28 20:25:57 +01:00
|
|
|
{
|
|
|
|
"shareejson" : {
|
|
|
|
***sharee JSON defaults***
|
|
|
|
},
|
2022-01-28 12:58:48 +01:00
|
|
|
"WUE9301" : {
|
|
|
|
"state" : "available",
|
|
|
|
"uri_operator" : "https://shareeapp-wue.copri-bike.de",
|
|
|
|
"description" : "Rieselfeldemo",
|
|
|
|
"operator_data" : {
|
|
|
|
"operator_hours" : "Montag, Mittwoch, Freitag 9-12 Uhr",
|
|
|
|
"operator_logo" : "",
|
|
|
|
"operator_name" : "Test GmbH",
|
|
|
|
"operator_email" : "hotline@wuerzburg.demo",
|
|
|
|
"operator_phone" : "09876-122222",
|
|
|
|
"operator_color" : "#009699"
|
|
|
|
},
|
|
|
|
"station" : "WUE9301",
|
|
|
|
"authed" : "1",
|
|
|
|
"service_tour" : "WUE2",
|
|
|
|
"station_group" : [
|
|
|
|
"WUE300101"
|
|
|
|
],
|
|
|
|
"gps" : {
|
|
|
|
"latitude" : "47.99814334149303",
|
|
|
|
"longitude" : " 7.765779379576922"
|
|
|
|
},
|
|
|
|
"gps_radius" : "100"
|
|
|
|
},
|
2022-01-28 20:27:26 +01:00
|
|
|
"WUE9302" : {
|
|
|
|
...
|
|
|
|
}
|
2022-01-28 12:58:48 +01:00
|
|
|
```
|