use RadioManagerClient::Object::VisualSlideApi;
All URIs are relative to https://radiomanager.io/api/v2
Method | HTTP request | Description |
---|---|---|
get_visual_slide | GET /visual | Get Visual Slide Image as Base64 |
VisualResult get_visual_slide()
Get Visual Slide Image as Base64
Get Visual Slide Image as Base64
use Data::Dumper;
use RadioManagerClient::VisualSlideApi;
my $api_instance = RadioManagerClient::VisualSlideApi->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_visual_slide();
print Dumper($result);
};
if ($@) {
warn "Exception when calling VisualSlideApi->get_visual_slide: $@\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]