diff --git a/docs/AdvancedAuthenticationApi.md b/docs/AdvancedAuthenticationApi.md
index 274bd53..0da51ea 100644
--- a/docs/AdvancedAuthenticationApi.md
+++ b/docs/AdvancedAuthenticationApi.md
@@ -11,7 +11,8 @@ Method | HTTP request | Description
# **authenticate**
> AccessToken authenticate(authenticatePayload)
-
+> okhttp3.Call authenticateAsync(authenticatePayload, callback)
+> ApiResponse authenticateWithHttpInfo(authenticatePayload)
Get Bearer Token
Returns a bearer token that can be used to authenticate other endpoint. You can find the tutorial on using the disposable bearer token [here](https://docs.api.video/reference/disposable-bearer-token-authentication).
@@ -77,7 +78,8 @@ No authorization required
# **refresh**
> AccessToken refresh(refreshTokenPayload)
-
+> okhttp3.Call refreshAsync(refreshTokenPayload, callback)
+> ApiResponse refreshWithHttpInfo(refreshTokenPayload)
Refresh Bearer Token
Accepts the old bearer token and returns a new bearer token that can be used to authenticate other endpoint. You can find the tutorial on using the disposable bearer token [here](https://docs.api.video/reference/disposable-bearer-token-authentication).
diff --git a/docs/VideosApi.md b/docs/VideosApi.md
index f277df3..803bfb6 100644
--- a/docs/VideosApi.md
+++ b/docs/VideosApi.md
@@ -11,7 +11,8 @@ Method | HTTP request | Description
# **upload**
> Video upload(videoId, file)
-
+> okhttp3.Call uploadAsync(videoId, file, callback)
+> ApiResponse