use RadioManagerClient::Object::StationApi;
All URIs are relative to https://radiomanager.io/api/v2
Method | HTTP request | Description |
---|---|---|
get_station | GET /station | Get own station only |
StationResult get_station()
Get own station only
Get own station only
use Data::Dumper;
use RadioManagerClient::StationApi;
my $api_instance = RadioManagerClient::StationApi->new(
# Configure API key authorization: API Key
api_key => {'api-key' => 'YOUR_API_KEY'},
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#api_key_prefix => {'api-key' => 'Bearer'},
);
eval {
my $result = $api_instance->get_station();
print Dumper($result);
};
if ($@) {
warn "Exception when calling StationApi->get_station: $@\n";
}
This endpoint does not need any parameter.
[API Key](../README.md#API Key)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]