import 'package:openapi/api.dart';
All URIs are relative to http://localhost
Method | HTTP request | Description |
---|---|---|
syncPlayBuffering | POST /SyncPlay/Buffering | Notify SyncPlay group that member is buffering. |
syncPlayCreateGroup | POST /SyncPlay/New | Create a new SyncPlay group. |
syncPlayGetGroups | GET /SyncPlay/List | Gets all SyncPlay groups. |
syncPlayJoinGroup | POST /SyncPlay/Join | Join an existing SyncPlay group. |
syncPlayLeaveGroup | POST /SyncPlay/Leave | Leave the joined SyncPlay group. |
syncPlayMovePlaylistItem | POST /SyncPlay/MovePlaylistItem | Request to move an item in the playlist in SyncPlay group. |
syncPlayNextItem | POST /SyncPlay/NextItem | Request next item in SyncPlay group. |
syncPlayPause | POST /SyncPlay/Pause | Request pause in SyncPlay group. |
syncPlayPing | POST /SyncPlay/Ping | Update session ping. |
syncPlayPreviousItem | POST /SyncPlay/PreviousItem | Request previous item in SyncPlay group. |
syncPlayQueue | POST /SyncPlay/Queue | Request to queue items to the playlist of a SyncPlay group. |
syncPlayReady | POST /SyncPlay/Ready | Notify SyncPlay group that member is ready for playback. |
syncPlayRemoveFromPlaylist | POST /SyncPlay/RemoveFromPlaylist | Request to remove items from the playlist in SyncPlay group. |
syncPlaySeek | POST /SyncPlay/Seek | Request seek in SyncPlay group. |
syncPlaySetIgnoreWait | POST /SyncPlay/SetIgnoreWait | Request SyncPlay group to ignore member during group-wait. |
syncPlaySetNewQueue | POST /SyncPlay/SetNewQueue | Request to set new playlist in SyncPlay group. |
syncPlaySetPlaylistItem | POST /SyncPlay/SetPlaylistItem | Request to change playlist item in SyncPlay group. |
syncPlaySetRepeatMode | POST /SyncPlay/SetRepeatMode | Request to set repeat mode in SyncPlay group. |
syncPlaySetShuffleMode | POST /SyncPlay/SetShuffleMode | Request to set shuffle mode in SyncPlay group. |
syncPlayStop | POST /SyncPlay/Stop | Request stop in SyncPlay group. |
syncPlayUnpause | POST /SyncPlay/Unpause | Request unpause in SyncPlay group. |
syncPlayBuffering(bufferRequestDto)
Notify SyncPlay group that member is buffering.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final BufferRequestDto bufferRequestDto = ; // BufferRequestDto | The player status.
try {
api.syncPlayBuffering(bufferRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayBuffering: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
bufferRequestDto | BufferRequestDto | The player status. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlayCreateGroup(newGroupRequestDto)
Create a new SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final NewGroupRequestDto newGroupRequestDto = ; // NewGroupRequestDto | The settings of the new group.
try {
api.syncPlayCreateGroup(newGroupRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayCreateGroup: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
newGroupRequestDto | NewGroupRequestDto | The settings of the new group. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
BuiltList syncPlayGetGroups()
Gets all SyncPlay groups.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
try {
final response = api.syncPlayGetGroups();
print(response);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayGetGroups: $e\n');
}
This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: application/json, application/json; profile=CamelCase, application/json; profile=PascalCase
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlayJoinGroup(joinGroupRequestDto)
Join an existing SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final JoinGroupRequestDto joinGroupRequestDto = ; // JoinGroupRequestDto | The group to join.
try {
api.syncPlayJoinGroup(joinGroupRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayJoinGroup: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
joinGroupRequestDto | JoinGroupRequestDto | The group to join. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlayLeaveGroup()
Leave the joined SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
try {
api.syncPlayLeaveGroup();
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayLeaveGroup: $e\n');
}
This endpoint does not need any parameter.
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlayMovePlaylistItem(movePlaylistItemRequestDto)
Request to move an item in the playlist in SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final MovePlaylistItemRequestDto movePlaylistItemRequestDto = ; // MovePlaylistItemRequestDto | The new position for the item.
try {
api.syncPlayMovePlaylistItem(movePlaylistItemRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayMovePlaylistItem: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
movePlaylistItemRequestDto | MovePlaylistItemRequestDto | The new position for the item. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlayNextItem(nextItemRequestDto)
Request next item in SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final NextItemRequestDto nextItemRequestDto = ; // NextItemRequestDto | The current item information.
try {
api.syncPlayNextItem(nextItemRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayNextItem: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
nextItemRequestDto | NextItemRequestDto | The current item information. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlayPause()
Request pause in SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
try {
api.syncPlayPause();
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayPause: $e\n');
}
This endpoint does not need any parameter.
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlayPing(pingRequestDto)
Update session ping.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final PingRequestDto pingRequestDto = ; // PingRequestDto | The new ping.
try {
api.syncPlayPing(pingRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayPing: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
pingRequestDto | PingRequestDto | The new ping. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlayPreviousItem(previousItemRequestDto)
Request previous item in SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final PreviousItemRequestDto previousItemRequestDto = ; // PreviousItemRequestDto | The current item information.
try {
api.syncPlayPreviousItem(previousItemRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayPreviousItem: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
previousItemRequestDto | PreviousItemRequestDto | The current item information. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlayQueue(queueRequestDto)
Request to queue items to the playlist of a SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final QueueRequestDto queueRequestDto = ; // QueueRequestDto | The items to add.
try {
api.syncPlayQueue(queueRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayQueue: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
queueRequestDto | QueueRequestDto | The items to add. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlayReady(readyRequestDto)
Notify SyncPlay group that member is ready for playback.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final ReadyRequestDto readyRequestDto = ; // ReadyRequestDto | The player status.
try {
api.syncPlayReady(readyRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayReady: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
readyRequestDto | ReadyRequestDto | The player status. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlayRemoveFromPlaylist(removeFromPlaylistRequestDto)
Request to remove items from the playlist in SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final RemoveFromPlaylistRequestDto removeFromPlaylistRequestDto = ; // RemoveFromPlaylistRequestDto | The items to remove.
try {
api.syncPlayRemoveFromPlaylist(removeFromPlaylistRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayRemoveFromPlaylist: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
removeFromPlaylistRequestDto | RemoveFromPlaylistRequestDto | The items to remove. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlaySeek(seekRequestDto)
Request seek in SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final SeekRequestDto seekRequestDto = ; // SeekRequestDto | The new playback position.
try {
api.syncPlaySeek(seekRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlaySeek: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
seekRequestDto | SeekRequestDto | The new playback position. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlaySetIgnoreWait(ignoreWaitRequestDto)
Request SyncPlay group to ignore member during group-wait.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final IgnoreWaitRequestDto ignoreWaitRequestDto = ; // IgnoreWaitRequestDto | The settings to set.
try {
api.syncPlaySetIgnoreWait(ignoreWaitRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlaySetIgnoreWait: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
ignoreWaitRequestDto | IgnoreWaitRequestDto | The settings to set. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlaySetNewQueue(playRequestDto)
Request to set new playlist in SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final PlayRequestDto playRequestDto = ; // PlayRequestDto | The new playlist to play in the group.
try {
api.syncPlaySetNewQueue(playRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlaySetNewQueue: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
playRequestDto | PlayRequestDto | The new playlist to play in the group. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlaySetPlaylistItem(setPlaylistItemRequestDto)
Request to change playlist item in SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final SetPlaylistItemRequestDto setPlaylistItemRequestDto = ; // SetPlaylistItemRequestDto | The new item to play.
try {
api.syncPlaySetPlaylistItem(setPlaylistItemRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlaySetPlaylistItem: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
setPlaylistItemRequestDto | SetPlaylistItemRequestDto | The new item to play. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlaySetRepeatMode(setRepeatModeRequestDto)
Request to set repeat mode in SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final SetRepeatModeRequestDto setRepeatModeRequestDto = ; // SetRepeatModeRequestDto | The new repeat mode.
try {
api.syncPlaySetRepeatMode(setRepeatModeRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlaySetRepeatMode: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
setRepeatModeRequestDto | SetRepeatModeRequestDto | The new repeat mode. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlaySetShuffleMode(setShuffleModeRequestDto)
Request to set shuffle mode in SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
final SetShuffleModeRequestDto setShuffleModeRequestDto = ; // SetShuffleModeRequestDto | The new shuffle mode.
try {
api.syncPlaySetShuffleMode(setShuffleModeRequestDto);
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlaySetShuffleMode: $e\n');
}
Name | Type | Description | Notes |
---|---|---|---|
setShuffleModeRequestDto | SetShuffleModeRequestDto | The new shuffle mode. |
void (empty response body)
- Content-Type: application/json, text/json, application/*+json
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlayStop()
Request stop in SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
try {
api.syncPlayStop();
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayStop: $e\n');
}
This endpoint does not need any parameter.
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
syncPlayUnpause()
Request unpause in SyncPlay group.
import 'package:openapi/api.dart';
// TODO Configure API key authorization: CustomAuthentication
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKey = 'YOUR_API_KEY';
// uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//defaultApiClient.getAuthentication<ApiKeyAuth>('CustomAuthentication').apiKeyPrefix = 'Bearer';
final api = Openapi().getSyncPlayApi();
try {
api.syncPlayUnpause();
} catch on DioException (e) {
print('Exception when calling SyncPlayApi->syncPlayUnpause: $e\n');
}
This endpoint does not need any parameter.
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]