# WopRestfulApi.StationApi

All URIs are relative to *http://localhost:7070/*

Method | HTTP request | Description
------------- | ------------- | -------------
[**getStationById**](StationApi.md#getStationById) | **GET** /station/{id} | 


<a name="getStationById"></a>
# **getStationById**
> GetStationByIdResponse getStationById(id)



### Example
```javascript
var WopRestfulApi = require('wop_restful_api');

var apiInstance = new WopRestfulApi.StationApi();

var id = 56; // Number | 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.getStationById(id, callback);
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **id** | **Number**|  | 

### Return type

[**GetStationByIdResponse**](GetStationByIdResponse.md)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

