Uses of Class
video.api.client.api.ApiException

  • Uses of ApiException in video.api.client.api

    Methods in video.api.client.api with parameters of type ApiException
    Modifier and Type Method Description
    void ApiCallback.onFailure​(ApiException e, int statusCode, java.util.Map<java.lang.String,​java.util.List<java.lang.String>> responseHeaders)
    This is called when the API call fails.
    Methods in video.api.client.api that throw ApiException
    Modifier and Type Method Description
    okhttp3.Call ApiClient.buildCall​(java.lang.String path, java.lang.String method, java.util.List<Pair> queryParams, java.util.List<Pair> collectionQueryParams, java.lang.Object body, java.util.Map<java.lang.String,​java.lang.String> headerParams, java.util.Map<java.lang.String,​java.lang.String> cookieParams, java.util.Map<java.lang.String,​java.lang.Object> formParams, java.lang.String[] authNames, ApiCallback callback)
    Build HTTP call with the given options.
    okhttp3.Request ApiClient.buildRequest​(java.lang.String path, java.lang.String method, java.util.List<Pair> queryParams, java.util.List<Pair> collectionQueryParams, java.lang.Object body, java.util.Map<java.lang.String,​java.lang.String> headerParams, java.util.Map<java.lang.String,​java.lang.String> cookieParams, java.util.Map<java.lang.String,​java.lang.Object> formParams, java.lang.String[] authNames, ApiCallback callback)
    Build an HTTP request with the given options.
    <T> T ApiClient.deserialize​(okhttp3.Response response, java.lang.reflect.Type returnType)
    Deserialize response body to Java object, according to the return type and the Content-Type response header.
    java.io.File ApiClient.downloadFileFromResponse​(okhttp3.Response response)
    Download file from the given response.
    <T> ApiResponse<T> ApiClient.execute​(okhttp3.Call call)
    <T> ApiResponse<T> ApiClient.execute​(okhttp3.Call call, java.lang.reflect.Type returnType)
    Execute HTTP call and deserialize the HTTP response body into the given return type.
    java.lang.String ApiClient.getAccessToken()
    Get access token
    <T> T ApiClient.handleResponse​(okhttp3.Response response, java.lang.reflect.Type returnType)
    Handle the given response, return the deserialized object when the response is successful.
    okhttp3.RequestBody ApiClient.serialize​(java.lang.Object obj, java.lang.String contentType)
    Serialize the given Java object into request body according to the object's class and the request Content-Type.
  • Uses of ApiException in video.api.client.api.auth

    Methods in video.api.client.api.auth that throw ApiException
    Modifier and Type Method Description
    java.lang.String ApiVideoAuthInterceptor.getAccessToken()  
  • Uses of ApiException in video.api.client.api.clients

    Methods in video.api.client.api.clients that throw ApiException
    Modifier and Type Method Description
    AccessToken AuthenticationApi.authenticate​(AuthenticatePayload authenticatePayload)
    Authenticate To get started, submit your API key in the body of your request. api.video returns an access token that is valid for one hour (3600 seconds).
    ApiResponse<AccessToken> AuthenticationApi.authenticateWithHttpInfo​(AuthenticatePayload authenticatePayload)
    Authenticate To get started, submit your API key in the body of your request. api.video returns an access token that is valid for one hour (3600 seconds).
    okhttp3.Call CaptionsApi.APIlistRequest.buildCall​(ApiCallback _callback)
    Build call for list
    okhttp3.Call ChaptersApi.APIlistRequest.buildCall​(ApiCallback _callback)
    Build call for list
    okhttp3.Call LiveApi.APIlistRequest.buildCall​(ApiCallback _callback)
    Build call for list
    okhttp3.Call LiveStreamsApi.APIlistRequest.buildCall​(ApiCallback _callback)
    Build call for list
    okhttp3.Call PlayersApi.APIlistRequest.buildCall​(ApiCallback _callback)
    Build call for list
    okhttp3.Call PlayerThemesApi.APIlistRequest.buildCall​(ApiCallback _callback)
    Build call for list
    okhttp3.Call RawStatisticsApi.APIlistLiveStreamSessionsRequest.buildCall​(ApiCallback _callback)
    Build call for listLiveStreamSessions
    okhttp3.Call RawStatisticsApi.APIlistSessionEventsRequest.buildCall​(ApiCallback _callback)
    Build call for listSessionEvents
    okhttp3.Call RawStatisticsApi.APIlistVideoSessionsRequest.buildCall​(ApiCallback _callback)
    Build call for listVideoSessions
    okhttp3.Call UploadTokensApi.APIlistRequest.buildCall​(ApiCallback _callback)
    Build call for list
    okhttp3.Call VideosApi.APIlistRequest.buildCall​(ApiCallback _callback)
    Build call for list
    okhttp3.Call VideosDelegatedUploadApi.APIlistTokensRequest.buildCall​(ApiCallback _callback)
    Build call for listTokens
    okhttp3.Call WebhooksApi.APIlistRequest.buildCall​(ApiCallback _callback)
    Build call for list
    LiveStream LiveApi.create​(LiveStreamCreatePayload liveStreamCreatePayload)
    Create live stream A live stream will give you the 'connection point' to RTMP your video stream to api.video.
    LiveStream LiveStreamsApi.create​(LiveStreamCreatePayload liveStreamCreatePayload)
    Create live stream A live stream will give you the 'connection point' to RTMP your video stream to api.video.
    Player PlayersApi.create​(PlayerCreationPayload playerCreationPayload)
    Create a player Create a player for your video, and customise it.
    Player PlayerThemesApi.create​(PlayerCreationPayload playerCreationPayload)
    Create a player Create a player for your video, and customise it.
    Video VideosApi.create​(VideoCreatePayload videoCreatePayload)
    Create a video To create a video, you create its metadata first, before adding the video file (exception - when using an existing HTTP source).
    Webhook WebhooksApi.create​(WebhooksCreatePayload webhooksCreatePayload)
    Create Webhook Webhooks can push notifications to your server, rather than polling api.video for changes.
    UploadToken UploadTokensApi.createToken​(TokenCreatePayload tokenCreatePayload)
    Generate an upload token Use this endpoint to generate an upload token.
    UploadToken VideosDelegatedUploadApi.createToken​(TokenCreatePayload tokenCreatePayload)
    Generate an upload token Use this endpoint to generate an upload token.
    ApiResponse<UploadToken> UploadTokensApi.createTokenWithHttpInfo​(TokenCreatePayload tokenCreatePayload)
    Generate an upload token Use this endpoint to generate an upload token.
    ApiResponse<UploadToken> VideosDelegatedUploadApi.createTokenWithHttpInfo​(TokenCreatePayload tokenCreatePayload)
    Generate an upload token Use this endpoint to generate an upload token.
    ApiResponse<LiveStream> LiveApi.createWithHttpInfo​(LiveStreamCreatePayload liveStreamCreatePayload)
    Create live stream A live stream will give you the 'connection point' to RTMP your video stream to api.video.
    ApiResponse<LiveStream> LiveStreamsApi.createWithHttpInfo​(LiveStreamCreatePayload liveStreamCreatePayload)
    Create live stream A live stream will give you the 'connection point' to RTMP your video stream to api.video.
    ApiResponse<Player> PlayersApi.createWithHttpInfo​(PlayerCreationPayload playerCreationPayload)
    Create a player Create a player for your video, and customise it.
    ApiResponse<Player> PlayerThemesApi.createWithHttpInfo​(PlayerCreationPayload playerCreationPayload)
    Create a player Create a player for your video, and customise it.
    ApiResponse<Video> VideosApi.createWithHttpInfo​(VideoCreatePayload videoCreatePayload)
    Create a video To create a video, you create its metadata first, before adding the video file (exception - when using an existing HTTP source).
    ApiResponse<Webhook> WebhooksApi.createWithHttpInfo​(WebhooksCreatePayload webhooksCreatePayload)
    Create Webhook Webhooks can push notifications to your server, rather than polling api.video for changes.
    void CaptionsApi.delete​(java.lang.String videoId, java.lang.String language)
    Delete a caption Delete a caption in a specific language by providing the video ID for the video you want to delete the caption from and the language the caption is in.
    void ChaptersApi.delete​(java.lang.String videoId, java.lang.String language)
    Delete a chapter
    void LiveApi.delete​(java.lang.String liveStreamId)
    Delete a live stream
    void LiveStreamsApi.delete​(java.lang.String liveStreamId)
    Delete a live stream
    void PlayersApi.delete​(java.lang.String playerId)
    Delete a player Delete a player if you no longer need it.
    void PlayerThemesApi.delete​(java.lang.String playerId)
    Delete a player Delete a player if you no longer need it.
    void VideosApi.delete​(java.lang.String videoId)
    Delete a video If you do not need a video any longer, you can send a request to delete it.
    void WebhooksApi.delete​(java.lang.String webhookId)
    Delete a Webhook This endpoint will delete the indicated webhook.
    java.lang.Object PlayersApi.deleteLogo​(java.lang.String playerId)
    Delete logo
    void PlayerThemesApi.deleteLogo​(java.lang.String playerId)
    Delete logo
    ApiResponse<java.lang.Object> PlayersApi.deleteLogoWithHttpInfo​(java.lang.String playerId)
    Delete logo
    ApiResponse<java.lang.Void> PlayerThemesApi.deleteLogoWithHttpInfo​(java.lang.String playerId)
    Delete logo
    LiveStream LiveApi.deleteThumbnail​(java.lang.String liveStreamId)
    Delete a thumbnail Send the unique identifier for a live stream to delete it from the system.
    LiveStream LiveStreamsApi.deleteThumbnail​(java.lang.String liveStreamId)
    Delete a thumbnail Send the unique identifier for a live stream to delete it from the system.
    ApiResponse<LiveStream> LiveApi.deleteThumbnailWithHttpInfo​(java.lang.String liveStreamId)
    Delete a thumbnail Send the unique identifier for a live stream to delete it from the system.
    ApiResponse<LiveStream> LiveStreamsApi.deleteThumbnailWithHttpInfo​(java.lang.String liveStreamId)
    Delete a thumbnail Send the unique identifier for a live stream to delete it from the system.
    void UploadTokensApi.deleteToken​(java.lang.String uploadToken)
    Delete an upload token Delete an existing upload token.
    void VideosDelegatedUploadApi.deleteToken​(java.lang.String uploadToken)
    Delete an upload token Delete an existing upload token.
    ApiResponse<java.lang.Void> UploadTokensApi.deleteTokenWithHttpInfo​(java.lang.String uploadToken)
    Delete an upload token Delete an existing upload token.
    ApiResponse<java.lang.Void> VideosDelegatedUploadApi.deleteTokenWithHttpInfo​(java.lang.String uploadToken)
    Delete an upload token Delete an existing upload token.
    ApiResponse<java.lang.Void> CaptionsApi.deleteWithHttpInfo​(java.lang.String videoId, java.lang.String language)
    Delete a caption Delete a caption in a specific language by providing the video ID for the video you want to delete the caption from and the language the caption is in.
    ApiResponse<java.lang.Void> ChaptersApi.deleteWithHttpInfo​(java.lang.String videoId, java.lang.String language)
    Delete a chapter
    ApiResponse<java.lang.Void> LiveApi.deleteWithHttpInfo​(java.lang.String liveStreamId)
    Delete a live stream
    ApiResponse<java.lang.Void> LiveStreamsApi.deleteWithHttpInfo​(java.lang.String liveStreamId)
    Delete a live stream
    ApiResponse<java.lang.Void> PlayersApi.deleteWithHttpInfo​(java.lang.String playerId)
    Delete a player Delete a player if you no longer need it.
    ApiResponse<java.lang.Void> PlayerThemesApi.deleteWithHttpInfo​(java.lang.String playerId)
    Delete a player Delete a player if you no longer need it.
    ApiResponse<java.lang.Void> VideosApi.deleteWithHttpInfo​(java.lang.String videoId)
    Delete a video If you do not need a video any longer, you can send a request to delete it.
    ApiResponse<java.lang.Void> WebhooksApi.deleteWithHttpInfo​(java.lang.String webhookId)
    Delete a Webhook This endpoint will delete the indicated webhook.
    Page<Subtitle> CaptionsApi.APIlistRequest.execute()
    Execute list request
    Page<Chapter> ChaptersApi.APIlistRequest.execute()
    Execute list request
    Page<LiveStream> LiveApi.APIlistRequest.execute()
    Execute list request
    Page<LiveStream> LiveStreamsApi.APIlistRequest.execute()
    Execute list request
    Page<Player> PlayersApi.APIlistRequest.execute()
    Execute list request
    Page<Player> PlayerThemesApi.APIlistRequest.execute()
    Execute list request
    Page<LiveStreamSession> RawStatisticsApi.APIlistLiveStreamSessionsRequest.execute()
    Execute listLiveStreamSessions request
    Page<PlayerSessionEvent> RawStatisticsApi.APIlistSessionEventsRequest.execute()
    Execute listSessionEvents request
    Page<VideoSession> RawStatisticsApi.APIlistVideoSessionsRequest.execute()
    Execute listVideoSessions request
    Page<UploadToken> UploadTokensApi.APIlistRequest.execute()
    Execute list request
    Page<Video> VideosApi.APIlistRequest.execute()
    Execute list request
    Page<UploadToken> VideosDelegatedUploadApi.APIlistTokensRequest.execute()
    Execute listTokens request
    Page<Webhook> WebhooksApi.APIlistRequest.execute()
    Execute list request
    ApiResponse<CaptionsListResponse> CaptionsApi.APIlistRequest.executeWithHttpInfo()
    Execute list request with HTTP info returned
    ApiResponse<ChaptersListResponse> ChaptersApi.APIlistRequest.executeWithHttpInfo()
    Execute list request with HTTP info returned
    ApiResponse<LiveStreamListResponse> LiveApi.APIlistRequest.executeWithHttpInfo()
    Execute list request with HTTP info returned
    ApiResponse<LiveStreamListResponse> LiveStreamsApi.APIlistRequest.executeWithHttpInfo()
    Execute list request with HTTP info returned
    ApiResponse<PlayersListResponse> PlayersApi.APIlistRequest.executeWithHttpInfo()
    Execute list request with HTTP info returned
    ApiResponse<PlayersListResponse> PlayerThemesApi.APIlistRequest.executeWithHttpInfo()
    Execute list request with HTTP info returned
    ApiResponse<RawStatisticsListLiveStreamAnalyticsResponse> RawStatisticsApi.APIlistLiveStreamSessionsRequest.executeWithHttpInfo()
    Execute listLiveStreamSessions request with HTTP info returned
    ApiResponse<RawStatisticsListPlayerSessionEventsResponse> RawStatisticsApi.APIlistSessionEventsRequest.executeWithHttpInfo()
    Execute listSessionEvents request with HTTP info returned
    ApiResponse<RawStatisticsListSessionsResponse> RawStatisticsApi.APIlistVideoSessionsRequest.executeWithHttpInfo()
    Execute listVideoSessions request with HTTP info returned
    ApiResponse<TokenListResponse> UploadTokensApi.APIlistRequest.executeWithHttpInfo()
    Execute list request with HTTP info returned
    ApiResponse<VideosListResponse> VideosApi.APIlistRequest.executeWithHttpInfo()
    Execute list request with HTTP info returned
    ApiResponse<TokenListResponse> VideosDelegatedUploadApi.APIlistTokensRequest.executeWithHttpInfo()
    Execute listTokens request with HTTP info returned
    ApiResponse<WebhooksListResponse> WebhooksApi.APIlistRequest.executeWithHttpInfo()
    Execute list request with HTTP info returned
    Account AccountApi.get()
    Deprecated. 
    Subtitle CaptionsApi.get​(java.lang.String videoId, java.lang.String language)
    Show a caption Display a caption for a video in a specific language.
    Chapter ChaptersApi.get​(java.lang.String videoId, java.lang.String language)
    Show a chapter
    LiveStream LiveApi.get​(java.lang.String liveStreamId)
    Show live stream Supply a LivestreamId, and you'll get all the details for streaming into, and watching the livestream.
    LiveStream LiveStreamsApi.get​(java.lang.String liveStreamId)
    Show live stream Supply a LivestreamId, and you'll get all the details for streaming into, and watching the livestream.
    Player PlayersApi.get​(java.lang.String playerId)
    Show a player Use a player ID to retrieve details about the player and display it for viewers.
    Player PlayerThemesApi.get​(java.lang.String playerId)
    Show a player Use a player ID to retrieve details about the player and display it for viewers.
    Video VideosApi.get​(java.lang.String videoId)
    Show a video This call provides the same JSON information provided on video creation.
    Webhook WebhooksApi.get​(java.lang.String webhookId)
    Show Webhook details This call provides the same JSON information provided on Webjhook creation.
    Videostatus VideosApi.getStatus​(java.lang.String videoId)
    Show video status This API provides upload status & encoding status to determine when the video is uploaded or ready to playback.
    ApiResponse<Videostatus> VideosApi.getStatusWithHttpInfo​(java.lang.String videoId)
    Show video status This API provides upload status & encoding status to determine when the video is uploaded or ready to playback.
    UploadToken UploadTokensApi.getToken​(java.lang.String uploadToken)
    Show upload token You can retrieve details about a specific upload token if you have the unique identifier for the upload token.
    UploadToken VideosDelegatedUploadApi.getToken​(java.lang.String uploadToken)
    Show upload token You can retrieve details about a specific upload token if you have the unique identifier for the upload token.
    ApiResponse<UploadToken> UploadTokensApi.getTokenWithHttpInfo​(java.lang.String uploadToken)
    Show upload token You can retrieve details about a specific upload token if you have the unique identifier for the upload token.
    ApiResponse<UploadToken> VideosDelegatedUploadApi.getTokenWithHttpInfo​(java.lang.String uploadToken)
    Show upload token You can retrieve details about a specific upload token if you have the unique identifier for the upload token.
    ApiResponse<Account> AccountApi.getWithHttpInfo()
    Deprecated. 
    ApiResponse<Subtitle> CaptionsApi.getWithHttpInfo​(java.lang.String videoId, java.lang.String language)
    Show a caption Display a caption for a video in a specific language.
    ApiResponse<Chapter> ChaptersApi.getWithHttpInfo​(java.lang.String videoId, java.lang.String language)
    Show a chapter
    ApiResponse<LiveStream> LiveApi.getWithHttpInfo​(java.lang.String liveStreamId)
    Show live stream Supply a LivestreamId, and you'll get all the details for streaming into, and watching the livestream.
    ApiResponse<LiveStream> LiveStreamsApi.getWithHttpInfo​(java.lang.String liveStreamId)
    Show live stream Supply a LivestreamId, and you'll get all the details for streaming into, and watching the livestream.
    ApiResponse<Player> PlayersApi.getWithHttpInfo​(java.lang.String playerId)
    Show a player Use a player ID to retrieve details about the player and display it for viewers.
    ApiResponse<Player> PlayerThemesApi.getWithHttpInfo​(java.lang.String playerId)
    Show a player Use a player ID to retrieve details about the player and display it for viewers.
    ApiResponse<Video> VideosApi.getWithHttpInfo​(java.lang.String videoId)
    Show a video This call provides the same JSON information provided on video creation.
    ApiResponse<Webhook> WebhooksApi.getWithHttpInfo​(java.lang.String webhookId)
    Show Webhook details This call provides the same JSON information provided on Webjhook creation.
    Video VideosApi.pickThumbnail​(java.lang.String videoId, VideoThumbnailPickPayload videoThumbnailPickPayload)
    Pick a thumbnail Pick a thumbnail from the given time code.
    ApiResponse<Video> VideosApi.pickThumbnailWithHttpInfo​(java.lang.String videoId, VideoThumbnailPickPayload videoThumbnailPickPayload)
    Pick a thumbnail Pick a thumbnail from the given time code.
    AccessToken AuthenticationApi.refresh​(RefreshTokenPayload refreshTokenPayload)
    Refresh token Use the refresh endpoint with the refresh token you received when you first authenticated using the api-key endpoint.
    ApiResponse<AccessToken> AuthenticationApi.refreshWithHttpInfo​(RefreshTokenPayload refreshTokenPayload)
    Refresh token Use the refresh endpoint with the refresh token you received when you first authenticated using the api-key endpoint.
    Subtitle CaptionsApi.update​(java.lang.String videoId, java.lang.String language, CaptionsUpdatePayload captionsUpdatePayload)
    Update caption To have the captions on automatically, use this PATCH to set default: true.
    LiveStream LiveApi.update​(java.lang.String liveStreamId, LiveStreamUpdatePayload liveStreamUpdatePayload)
    Update a live stream Use this endpoint to update the player, or to turn recording on/off (saving a copy of the livestream).
    LiveStream LiveStreamsApi.update​(java.lang.String liveStreamId, LiveStreamUpdatePayload liveStreamUpdatePayload)
    Update a live stream Use this endpoint to update the player, or to turn recording on/off (saving a copy of the livestream).
    Player PlayersApi.update​(java.lang.String playerId, PlayerUpdatePayload playerUpdatePayload)
    Update a player Use a player ID to update specific details for a player.
    Player PlayerThemesApi.update​(java.lang.String playerId, PlayerUpdatePayload playerUpdatePayload)
    Update a player Use a player ID to update specific details for a player.
    Video VideosApi.update​(java.lang.String videoId, VideoUpdatePayload videoUpdatePayload)
    Update a video Use this endpoint to update the parameters associated with your video.
    ApiResponse<Subtitle> CaptionsApi.updateWithHttpInfo​(java.lang.String videoId, java.lang.String language, CaptionsUpdatePayload captionsUpdatePayload)
    Update caption To have the captions on automatically, use this PATCH to set default: true.
    ApiResponse<LiveStream> LiveApi.updateWithHttpInfo​(java.lang.String liveStreamId, LiveStreamUpdatePayload liveStreamUpdatePayload)
    Update a live stream Use this endpoint to update the player, or to turn recording on/off (saving a copy of the livestream).
    ApiResponse<LiveStream> LiveStreamsApi.updateWithHttpInfo​(java.lang.String liveStreamId, LiveStreamUpdatePayload liveStreamUpdatePayload)
    Update a live stream Use this endpoint to update the player, or to turn recording on/off (saving a copy of the livestream).
    ApiResponse<Player> PlayersApi.updateWithHttpInfo​(java.lang.String playerId, PlayerUpdatePayload playerUpdatePayload)
    Update a player Use a player ID to update specific details for a player.
    ApiResponse<Player> PlayerThemesApi.updateWithHttpInfo​(java.lang.String playerId, PlayerUpdatePayload playerUpdatePayload)
    Update a player Use a player ID to update specific details for a player.
    ApiResponse<Video> VideosApi.updateWithHttpInfo​(java.lang.String videoId, VideoUpdatePayload videoUpdatePayload)
    Update a video Use this endpoint to update the parameters associated with your video.
    Subtitle CaptionsApi.upload​(java.lang.String videoId, java.lang.String language, java.io.File file)
    Upload a caption Upload a VTT file to add captions to your video.
    Chapter ChaptersApi.upload​(java.lang.String videoId, java.lang.String language, java.io.File file)
    Upload a chapter Chapters help break the video into sections.
    Video VideosApi.upload​(java.lang.String videoId, java.io.File file)
    Upload a video To upload a video to the videoId you created.
    Video VideosApi.upload​(java.lang.String videoId, java.io.File file, UploadProgressListener uploadProgressListener)
    Upload a video To upload a video to the videoId you created.
    Video VideosDelegatedUploadApi.upload​(java.lang.String token, java.io.File file)
    Upload with an upload token When given a token, anyone can upload a file to the URI `https://ws.api.video/upload?
    Video VideosDelegatedUploadApi.upload​(java.lang.String token, java.io.File file, UploadProgressListener uploadProgressListener)
    Upload with an upload token When given a token, anyone can upload a file to the URI `https://ws.api.video/upload?
    Player PlayersApi.uploadLogo​(java.lang.String playerId, java.io.File file, java.lang.String link)
    Upload a logo The uploaded image maximum size should be 200x100 and its weight should be 200KB.
    Player PlayerThemesApi.uploadLogo​(java.lang.String playerId, java.io.File file, java.lang.String link)
    Upload a logo The uploaded image maximum size should be 200x100 and its weight should be 200KB.
    ApiResponse<Player> PlayersApi.uploadLogoWithHttpInfo​(java.lang.String playerId, java.io.File file, java.lang.String link)
    Upload a logo The uploaded image maximum size should be 200x100 and its weight should be 200KB.
    ApiResponse<Player> PlayerThemesApi.uploadLogoWithHttpInfo​(java.lang.String playerId, java.io.File file, java.lang.String link)
    Upload a logo The uploaded image maximum size should be 200x100 and its weight should be 200KB.
    LiveStream LiveApi.uploadThumbnail​(java.lang.String liveStreamId, java.io.File file)
    Upload a thumbnail Upload an image to use as a backdrop for your livestream.
    LiveStream LiveStreamsApi.uploadThumbnail​(java.lang.String liveStreamId, java.io.File file)
    Upload a thumbnail Upload an image to use as a backdrop for your livestream.
    Video VideosApi.uploadThumbnail​(java.lang.String videoId, java.io.File file)
    Upload a thumbnail In creating a thumbnail, you may either upload an image, or you can pick a time in the video to be used as thumbnail.
    ApiResponse<LiveStream> LiveApi.uploadThumbnailWithHttpInfo​(java.lang.String liveStreamId, java.io.File file)
    Upload a thumbnail Upload an image to use as a backdrop for your livestream.
    ApiResponse<LiveStream> LiveStreamsApi.uploadThumbnailWithHttpInfo​(java.lang.String liveStreamId, java.io.File file)
    Upload a thumbnail Upload an image to use as a backdrop for your livestream.
    ApiResponse<Video> VideosApi.uploadThumbnailWithHttpInfo​(java.lang.String videoId, java.io.File file)
    Upload a thumbnail In creating a thumbnail, you may either upload an image, or you can pick a time in the video to be used as thumbnail.
    ApiResponse<Subtitle> CaptionsApi.uploadWithHttpInfo​(java.lang.String videoId, java.lang.String language, java.io.File file)
    Upload a caption Upload a VTT file to add captions to your video.
    ApiResponse<Chapter> ChaptersApi.uploadWithHttpInfo​(java.lang.String videoId, java.lang.String language, java.io.File file)
    Upload a chapter Chapters help break the video into sections.
    ApiResponse<Video> VideosApi.uploadWithHttpInfo​(java.lang.String videoId, java.io.File file)
    Upload a video To upload a video to the videoId you created.
    ApiResponse<Video> VideosApi.uploadWithHttpInfo​(java.lang.String videoId, java.io.File file, UploadProgressListener uploadProgressListener)
    Upload a video To upload a video to the videoId you created.
    ApiResponse<Video> VideosDelegatedUploadApi.uploadWithHttpInfo​(java.lang.String token, java.io.File file)
    Upload with an upload token When given a token, anyone can upload a file to the URI `https://ws.api.video/upload?
    ApiResponse<Video> VideosDelegatedUploadApi.uploadWithHttpInfo​(java.lang.String token, java.io.File file, UploadProgressListener uploadProgressListener)
    Upload with an upload token When given a token, anyone can upload a file to the URI `https://ws.api.video/upload?
    Video VideosApi.uploadWithUploadToken​(java.lang.String token, java.io.File file)
    Upload with an upload token When given a token, anyone can upload a file to the URI `https://ws.api.video/upload?
    Video VideosApi.uploadWithUploadToken​(java.lang.String token, java.io.File file, UploadProgressListener uploadProgressListener)
    Upload with an upload token When given a token, anyone can upload a file to the URI `https://ws.api.video/upload?
    ApiResponse<Video> VideosApi.uploadWithUploadTokenWithHttpInfo​(java.lang.String token, java.io.File file)
    Upload with an upload token When given a token, anyone can upload a file to the URI `https://ws.api.video/upload?
    ApiResponse<Video> VideosApi.uploadWithUploadTokenWithHttpInfo​(java.lang.String token, java.io.File file, UploadProgressListener uploadProgressListener)
    Upload with an upload token When given a token, anyone can upload a file to the URI `https://ws.api.video/upload?
  • Uses of ApiException in video.api.client.api.upload

    Constructors in video.api.client.api.upload that throw ApiException
    Constructor Description
    UploadChunkRequestBody​(java.io.File file, java.lang.Integer chunksCount, java.lang.Integer chunkNum, long totalBytes, long chunkStart, long chunkEnd, UploadProgressListener progressListener)