diff --git a/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256 b/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256
index 0b1c058..16802ac 100644
--- a/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256
+++ b/.openapi-generator/oas_apivideo.yaml-defaut-cli.sha256
@@ -1 +1 @@
-49fece4f39cb92341dc77e0eb7371a152903bf6aebcfa250d289efc9018b0f72
\ No newline at end of file
+5ad86d4a6e6bdfede262551219ba43c8a645a86bc20fc9740b6f950e86f99f1d
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0a1d7f8..01df790 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,9 @@
 # Changelog
 All changes to this project will be documented in this file.
 
+## [1.6.4] - 2024-10-08
+- Add transcript feature
+
 ## [1.6.3] - 2024-09-30
 - Add /tags API endpoint
 
diff --git a/docs/Video.md b/docs/Video.md
index 7c1638e..b83de60 100644
--- a/docs/Video.md
+++ b/docs/Video.md
@@ -13,6 +13,8 @@ Name | Type | Description | Notes
 **DiscardedAt** | **DateTime?** | The date and time the video was discarded. The API populates this field only if you have the Video Restore feature enabled and discard a video. Date and time are provided using ATOM UTC format. | [optional] 
 **DeletesAt** | **DateTime?** | The date and time the video will be permanently deleted. The API populates this field only if you have the Video Restore feature enabled and discard a video. Discarded videos are pemanently deleted after 90 days. Date and time are provided using ATOM UTC format. | [optional] 
 **Discarded** | **bool** | Returns `true` for videos you discarded when you have the Video Restore feature enabled. Returns `false` for every other video. | [optional] 
+**Language** | **string** | Returns the language of a video in [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format. You can set the language during video creation via the API, otherwise it is detected automatically. | [optional] 
+**LanguageOrigin** | **string** | Returns the origin of the last update on the video's `language` attribute.  - `api` means that the last update was requested from the API. - `auto` means that the last update was done automatically by the API. | [optional] 
 **Tags** | **List<string>** | One array of tags (each tag is a string) in order to categorize a video. Tags may include spaces.   | [optional] 
 **Metadata** | [**List<Metadata>**](Metadata.md) | Metadata you can use to categorise and filter videos. Metadata is a list of dictionaries, where each dictionary represents a key value pair for categorising a video.  | [optional] 
 **Source** | [**VideoSource**](VideoSource.md) |  | [optional] 
diff --git a/docs/VideoCreationPayload.md b/docs/VideoCreationPayload.md
index 5495133..88cc92e 100644
--- a/docs/VideoCreationPayload.md
+++ b/docs/VideoCreationPayload.md
@@ -15,6 +15,8 @@ Name | Type | Description | Notes
 **Metadata** | [**List<Metadata>**](Metadata.md) | A list of key value pairs that you use to provide metadata for your video. | [optional] 
 **Clip** | [**VideoClip**](VideoClip.md) |  | [optional] 
 **Watermark** | [**VideoWatermark**](VideoWatermark.md) |  | [optional] 
+**Language** | **string** | Use this parameter to set the language of the video. When this parameter is set, the API creates a transcript of the video using the language you specify. You must use the [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.  `language` is a permanent attribute of the video. You can update it to another language using the [`PATCH /videos/{videoId}`](https://docs.api.video/reference/api/Videos#update-a-video-object) operation. This triggers the API to generate a new transcript using a different language. | [optional] 
+**Transcript** | **bool** | Use this parameter to enable transcription.   - When `true`, the API generates a transcript for the video. - The default value is `false`. - If you define a video language using the `language` parameter, the API uses that language to transcribe the video. If you do not define a language, the API detects it based on the video.  - When the API generates a transcript, it will be available as a caption for the video. | [optional] 
 
 [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
 
diff --git a/docs/VideoUpdatePayload.md b/docs/VideoUpdatePayload.md
index 70d0880..be4b7fb 100644
--- a/docs/VideoUpdatePayload.md
+++ b/docs/VideoUpdatePayload.md
@@ -12,6 +12,8 @@ Name | Type | Description | Notes
 **Mp4Support** | **bool** | Whether the player supports the mp4 format. | [optional] 
 **Tags** | **List<string>** | A list of terms or words you want to tag the video with. Make sure the list includes all the tags you want as whatever you send in this list will overwrite the existing list for the video. | [optional] 
 **Metadata** | [**List<Metadata>**](Metadata.md) | A list (array) of dictionaries where each dictionary contains a key value pair that describes the video. As with tags, you must send the complete list of metadata you want as whatever you send here will overwrite the existing metadata for the video. | [optional] 
+**Language** | **string** | Use this parameter to set the language of the video. When this parameter is set, the API creates a transcript of the video using the language you specify. You must use the [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.  `language` is a permanent attribute of the video. You can update it to another language using the [`PATCH /videos/{videoId}`](https://docs.api.video/reference/api/Videos#update-a-video-object) operation. This triggers the API to generate a new transcript using a different language. | [optional] 
+**Transcript** | **bool** | Use this parameter to enable transcription.   - When `true`, the API generates a transcript for the video. - The default value is `false`. - If you define a video language using the `language` parameter, the API uses that language to transcribe the video. If you do not define a language, the API detects it based on the video.  - When the API generates a transcript, it will be available as a caption for the video. | [optional] 
 
 [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
 
diff --git a/src/Api/VideosApi.cs b/src/Api/VideosApi.cs
index 9fa0ff5..a5a2b25 100644
--- a/src/Api/VideosApi.cs
+++ b/src/Api/VideosApi.cs
@@ -85,7 +85,7 @@ public Task<ApiResponse<Video>> createWithHttpInfoAsync(VideoCreationPayload vid
             if (videoCreationPayload != null && videoCreationPayload.title == null) {
                 throw new ApiException(400,"Missing required parameter 'videoCreationPayload.Title' when calling VideosApi->create");
             }
-                                                                                                                                    
+                                                                                                                                                            
             // verify the required parameter 'videoCreationPayload' is set
             if (videoCreationPayload == null)
                 throw new ApiException(400, "Missing required parameter 'videoCreationPayload' when calling VideosApi->create");
@@ -157,7 +157,7 @@ public ApiResponse<Video> createWithHttpInfo(VideoCreationPayload videoCreationP
             if (videoCreationPayload != null && videoCreationPayload.title == null) {
                 throw new ApiException(400,"Missing required parameter 'videoCreationPayload.Title' when calling VideosApi->create");
             }
-                                                                                                                                    
+                                                                                                                                                            
             // verify the required parameter 'videoCreationPayload' is set
             if (videoCreationPayload == null)
                 throw new ApiException(400, "Missing required parameter 'videoCreationPayload' when calling VideosApi->create");
@@ -1242,11 +1242,11 @@ public Task<ApiResponse<Video>> updateWithHttpInfoAsync(string videoId, VideoUpd
             if (videoUpdatePayload == null) 
                 throw new ApiException(400,"Missing required parameter 'videoUpdatePayload' when calling VideosApi->update");
             
-                                                                                                
+                                                                                                                        
             if (videoUpdatePayload == null) 
                 throw new ApiException(400,"Missing required parameter 'videoUpdatePayload' when calling VideosApi->update");
             
-                                                                                                
+                                                                                                                        
             // verify the required parameter 'videoId' is set
             if (videoId == null)
                 throw new ApiException(400, "Missing required parameter 'videoId' when calling VideosApi->update");
@@ -1326,11 +1326,11 @@ public ApiResponse<Video> updateWithHttpInfo(string videoId, VideoUpdatePayload
             if (videoUpdatePayload == null) 
                 throw new ApiException(400,"Missing required parameter 'videoUpdatePayload' when calling VideosApi->update");
             
-                                                                                                
+                                                                                                                        
             if (videoUpdatePayload == null) 
                 throw new ApiException(400,"Missing required parameter 'videoUpdatePayload' when calling VideosApi->update");
             
-                                                                                                
+                                                                                                                        
             // verify the required parameter 'videoId' is set
             if (videoId == null)
                 throw new ApiException(400, "Missing required parameter 'videoId' when calling VideosApi->update");
diff --git a/src/ApiVideo.csproj b/src/ApiVideo.csproj
index 1e0e84d..4bdbd5b 100644
--- a/src/ApiVideo.csproj
+++ b/src/ApiVideo.csproj
@@ -13,7 +13,7 @@ The version of the OpenAPI document: 1
     <OutputType>Library</OutputType>
     <PackOnBuild>true</PackOnBuild>
     <PackageId>ApiVideo</PackageId>
-    <PackageVersion>1.6.3</PackageVersion>
+    <PackageVersion>1.6.4</PackageVersion>
     <Authors>api.video</Authors>
     <Description>api.video csharp API client</Description>
     <PackageLicenseExpression>MIT</PackageLicenseExpression>
diff --git a/src/Client/ApiClient.cs b/src/Client/ApiClient.cs
index 55c7798..0b75e20 100644
--- a/src/Client/ApiClient.cs
+++ b/src/Client/ApiClient.cs
@@ -95,7 +95,7 @@ public ApiClient(IRestClient client) {
         private void Initialize(IRestClient client)
         {
             this.RestClient = client;
-            setName("AV-Origin-Client", "csharp", "1.6.3");
+            setName("AV-Origin-Client", "csharp", "1.6.4");
         }
 
         /// <summary>
diff --git a/src/Model/Video.cs b/src/Model/Video.cs
index 28ee739..531aa77 100644
--- a/src/Model/Video.cs
+++ b/src/Model/Video.cs
@@ -76,6 +76,20 @@ public class Video: DeepObject   {
     [JsonProperty(PropertyName = "discarded")]
     public Nullable<bool> discarded { get; set; }
     /// <summary>
+    /// Returns the language of a video in [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format. You can set the language during video creation via the API, otherwise it is detected automatically.
+    /// </summary>
+    /// <value>Returns the language of a video in [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format. You can set the language during video creation via the API, otherwise it is detected automatically.</value>
+    [DataMember(Name="language", EmitDefaultValue=false)]
+    [JsonProperty(PropertyName = "language")]
+    public string language { get; set; }
+    /// <summary>
+    /// Returns the origin of the last update on the video's `language` attribute.  - `api` means that the last update was requested from the API. - `auto` means that the last update was done automatically by the API.
+    /// </summary>
+    /// <value>Returns the origin of the last update on the video's `language` attribute.  - `api` means that the last update was requested from the API. - `auto` means that the last update was done automatically by the API.</value>
+    [DataMember(Name="languageOrigin", EmitDefaultValue=false)]
+    [JsonProperty(PropertyName = "languageOrigin")]
+    public string languageorigin { get; set; }
+    /// <summary>
     /// One array of tags (each tag is a string) in order to categorize a video. Tags may include spaces.  
     /// </summary>
     /// <value>One array of tags (each tag is a string) in order to categorize a video. Tags may include spaces.  </value>
@@ -147,6 +161,8 @@ public override string ToString()  {
       sb.Append("  DiscardedAt: ").Append(discardedat).Append("\n");
       sb.Append("  DeletesAt: ").Append(deletesat).Append("\n");
       sb.Append("  Discarded: ").Append(discarded).Append("\n");
+      sb.Append("  Language: ").Append(language).Append("\n");
+      sb.Append("  LanguageOrigin: ").Append(languageorigin).Append("\n");
       sb.Append("  Tags: ").Append(tags).Append("\n");
       sb.Append("  Metadata: ").Append(metadata).Append("\n");
       sb.Append("  Source: ").Append(source).Append("\n");
diff --git a/src/Model/VideoCreationPayload.cs b/src/Model/VideoCreationPayload.cs
index 3d868ca..9e3f196 100644
--- a/src/Model/VideoCreationPayload.cs
+++ b/src/Model/VideoCreationPayload.cs
@@ -87,6 +87,20 @@ public class VideoCreationPayload: DeepObject   {
     [DataMember(Name="watermark", EmitDefaultValue=false)]
     [JsonProperty(PropertyName = "watermark")]
     public VideoWatermark watermark { get; set; }
+    /// <summary>
+    /// Use this parameter to set the language of the video. When this parameter is set, the API creates a transcript of the video using the language you specify. You must use the [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.  `language` is a permanent attribute of the video. You can update it to another language using the [`PATCH /videos/{videoId}`](https://docs.api.video/reference/api/Videos#update-a-video-object) operation. This triggers the API to generate a new transcript using a different language.
+    /// </summary>
+    /// <value>Use this parameter to set the language of the video. When this parameter is set, the API creates a transcript of the video using the language you specify. You must use the [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.  `language` is a permanent attribute of the video. You can update it to another language using the [`PATCH /videos/{videoId}`](https://docs.api.video/reference/api/Videos#update-a-video-object) operation. This triggers the API to generate a new transcript using a different language.</value>
+    [DataMember(Name="language", EmitDefaultValue=false)]
+    [JsonProperty(PropertyName = "language")]
+    public string language { get; set; }
+    /// <summary>
+    /// Use this parameter to enable transcription.   - When `true`, the API generates a transcript for the video. - The default value is `false`. - If you define a video language using the `language` parameter, the API uses that language to transcribe the video. If you do not define a language, the API detects it based on the video.  - When the API generates a transcript, it will be available as a caption for the video.
+    /// </summary>
+    /// <value>Use this parameter to enable transcription.   - When `true`, the API generates a transcript for the video. - The default value is `false`. - If you define a video language using the `language` parameter, the API uses that language to transcribe the video. If you do not define a language, the API detects it based on the video.  - When the API generates a transcript, it will be available as a caption for the video.</value>
+    [DataMember(Name="transcript", EmitDefaultValue=false)]
+    [JsonProperty(PropertyName = "transcript")]
+    public Nullable<bool> transcript { get; set; }
 
 
     /// <summary>
@@ -117,6 +131,8 @@ public override string ToString()  {
       sb.Append("  Metadata: ").Append(metadata).Append("\n");
       sb.Append("  Clip: ").Append(clip).Append("\n");
       sb.Append("  Watermark: ").Append(watermark).Append("\n");
+      sb.Append("  Language: ").Append(language).Append("\n");
+      sb.Append("  Transcript: ").Append(transcript).Append("\n");
       sb.Append("}\n");
       return sb.ToString();
     }
diff --git a/src/Model/VideoUpdatePayload.cs b/src/Model/VideoUpdatePayload.cs
index 9d98a2c..40f9564 100644
--- a/src/Model/VideoUpdatePayload.cs
+++ b/src/Model/VideoUpdatePayload.cs
@@ -83,6 +83,20 @@ public string playerid
     [DataMember(Name="metadata", EmitDefaultValue=false)]
     [JsonProperty(PropertyName = "metadata")]
     public List<Metadata> metadata { get; set; }
+    /// <summary>
+    /// Use this parameter to set the language of the video. When this parameter is set, the API creates a transcript of the video using the language you specify. You must use the [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.  `language` is a permanent attribute of the video. You can update it to another language using the [`PATCH /videos/{videoId}`](https://docs.api.video/reference/api/Videos#update-a-video-object) operation. This triggers the API to generate a new transcript using a different language.
+    /// </summary>
+    /// <value>Use this parameter to set the language of the video. When this parameter is set, the API creates a transcript of the video using the language you specify. You must use the [IETF language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.  `language` is a permanent attribute of the video. You can update it to another language using the [`PATCH /videos/{videoId}`](https://docs.api.video/reference/api/Videos#update-a-video-object) operation. This triggers the API to generate a new transcript using a different language.</value>
+    [DataMember(Name="language", EmitDefaultValue=false)]
+    [JsonProperty(PropertyName = "language")]
+    public string language { get; set; }
+    /// <summary>
+    /// Use this parameter to enable transcription.   - When `true`, the API generates a transcript for the video. - The default value is `false`. - If you define a video language using the `language` parameter, the API uses that language to transcribe the video. If you do not define a language, the API detects it based on the video.  - When the API generates a transcript, it will be available as a caption for the video.
+    /// </summary>
+    /// <value>Use this parameter to enable transcription.   - When `true`, the API generates a transcript for the video. - The default value is `false`. - If you define a video language using the `language` parameter, the API uses that language to transcribe the video. If you do not define a language, the API detects it based on the video.  - When the API generates a transcript, it will be available as a caption for the video.</value>
+    [DataMember(Name="transcript", EmitDefaultValue=false)]
+    [JsonProperty(PropertyName = "transcript")]
+    public Nullable<bool> transcript { get; set; }
 
 
     /// <summary>
@@ -100,6 +114,8 @@ public override string ToString()  {
       sb.Append("  Mp4Support: ").Append(mp4support).Append("\n");
       sb.Append("  Tags: ").Append(tags).Append("\n");
       sb.Append("  Metadata: ").Append(metadata).Append("\n");
+      sb.Append("  Language: ").Append(language).Append("\n");
+      sb.Append("  Transcript: ").Append(transcript).Append("\n");
       sb.Append("}\n");
       return sb.ToString();
     }
diff --git a/tests/Client/VideosApiTest.cs b/tests/Client/VideosApiTest.cs
index cdcb64e..db8898f 100644
--- a/tests/Client/VideosApiTest.cs
+++ b/tests/Client/VideosApiTest.cs
@@ -304,7 +304,7 @@ public void UpdatetResponseWithStatus200Test()
         public void UpdateResponseWithStatus400Test()
         {
             InitUpdateTests();
-            answerOnAnyRequest(400, readResourceFile(PAYLOADS_PATH + "responses/400.json"));
+            answerOnAnyRequest(400, readResourceFile(PAYLOADS_PATH + "responses/400-0.json"));
 
             api.Invoking(x => x.update("vi4k0jvEUuaTdRAEjQ4Jfrgz", new VideoUpdatePayload()))
                                 .Should()
@@ -458,7 +458,7 @@ public void CreateResponseWithStatus201Test()
         public void CreateResponseWithStatus400Test()
         {
             InitCreateTests();
-            answerOnAnyRequest(400, readResourceFile(PAYLOADS_PATH + "responses/400.json"));
+            answerOnAnyRequest(400, readResourceFile(PAYLOADS_PATH + "responses/400-0.json"));
 
             api.Invoking(x => x.create(new VideoCreationPayload() { title = "title" }))
                                 .Should()
diff --git a/tests/resources/payloads/videos/create/responses/201.json b/tests/resources/payloads/videos/create/responses/201.json
index fbcda04..6d0d225 100644
--- a/tests/resources/payloads/videos/create/responses/201.json
+++ b/tests/resources/payloads/videos/create/responses/201.json
@@ -2,6 +2,8 @@
   "videoId" : "vi4blUQJFrYWbaG44NChkH27",
   "title" : "Maths video",
   "description" : "An amazing video explaining the string theory",
+  "language" : "en",
+  "languageOrigin" : "api",
   "public" : false,
   "panoramic" : false,
   "mp4Support" : true,
diff --git a/tests/resources/payloads/videos/create/responses/400.json b/tests/resources/payloads/videos/create/responses/400-0.json
similarity index 100%
rename from tests/resources/payloads/videos/create/responses/400.json
rename to tests/resources/payloads/videos/create/responses/400-0.json
diff --git a/tests/resources/payloads/videos/create/responses/400-1.json b/tests/resources/payloads/videos/create/responses/400-1.json
new file mode 100644
index 0000000..c67814e
--- /dev/null
+++ b/tests/resources/payloads/videos/create/responses/400-1.json
@@ -0,0 +1,7 @@
+{
+  "type" : "https://docs.api.video/reference/invalid-attribute",
+  "title" : "An attribute is invalid.",
+  "status" : 400,
+  "detail" : "The \"language\" attribute must contain only letters and dashes (for example \"fr\", \"fr-BE\").",
+  "name" : "language"
+}
\ No newline at end of file
diff --git a/tests/resources/payloads/videos/create/responses/400-2.json b/tests/resources/payloads/videos/create/responses/400-2.json
new file mode 100644
index 0000000..fc103e0
--- /dev/null
+++ b/tests/resources/payloads/videos/create/responses/400-2.json
@@ -0,0 +1,7 @@
+{
+  "type" : "https://docs.api.video/reference/invalid-attribute",
+  "title" : "An attribute is invalid.",
+  "status" : 400,
+  "detail" : "The \"language\" attribute is not valid.",
+  "name" : "language"
+}
\ No newline at end of file
diff --git a/tests/resources/payloads/videos/get/responses/200.json b/tests/resources/payloads/videos/get/responses/200.json
index c6df209..05a4a7a 100644
--- a/tests/resources/payloads/videos/get/responses/200.json
+++ b/tests/resources/payloads/videos/get/responses/200.json
@@ -3,6 +3,8 @@
   "playerId" : "pl45KFKdlddgk654dspkze",
   "title" : "Maths video",
   "description" : "An amazing video explaining string theory",
+  "language" : "en",
+  "languageOrigin" : "api",
   "public" : false,
   "panoramic" : false,
   "mp4Support" : true,
diff --git a/tests/resources/payloads/videos/list/responses/200.json b/tests/resources/payloads/videos/list/responses/200.json
index 16b27a5..e2747ed 100644
--- a/tests/resources/payloads/videos/list/responses/200.json
+++ b/tests/resources/payloads/videos/list/responses/200.json
@@ -4,6 +4,8 @@
     "playerId" : "pl45KFKdlddgk654dspkze",
     "title" : "Maths video",
     "description" : "An amazing video explaining the string theory",
+    "language" : "en",
+    "languageOrigin" : "api",
     "public" : false,
     "panoramic" : false,
     "mp4Support" : true,
@@ -32,6 +34,8 @@
     "videoId" : "vi4blUQJFrYWbaG44NChkH27",
     "title" : "Video Title",
     "description" : "A description for your video.",
+    "language" : "en",
+    "languageOrigin" : "api",
     "public" : false,
     "panoramic" : false,
     "mp4Support" : true,
@@ -64,6 +68,8 @@
     "playerId" : "pl45KFKdlddgk654dspkze",
     "title" : "My Video Title",
     "description" : "A brief description of the video.",
+    "language" : "fr",
+    "languageOrigin" : "api",
     "public" : false,
     "panoramic" : false,
     "mp4Support" : true,
diff --git a/tests/resources/payloads/videos/update/responses/200.json b/tests/resources/payloads/videos/update/responses/200.json
index f466a51..db100f4 100644
--- a/tests/resources/payloads/videos/update/responses/200.json
+++ b/tests/resources/payloads/videos/update/responses/200.json
@@ -3,6 +3,8 @@
   "playerId" : "pl45KFKdlddgk654dspkze",
   "title" : "Maths video",
   "description" : "An amazing video explaining the string theory",
+  "language" : "en",
+  "languageOrigin" : "api",
   "public" : false,
   "panoramic" : false,
   "mp4Support" : true,
diff --git a/tests/resources/payloads/videos/update/responses/400.json b/tests/resources/payloads/videos/update/responses/400-0.json
similarity index 100%
rename from tests/resources/payloads/videos/update/responses/400.json
rename to tests/resources/payloads/videos/update/responses/400-0.json
diff --git a/tests/resources/payloads/videos/update/responses/400-1.json b/tests/resources/payloads/videos/update/responses/400-1.json
new file mode 100644
index 0000000..c67814e
--- /dev/null
+++ b/tests/resources/payloads/videos/update/responses/400-1.json
@@ -0,0 +1,7 @@
+{
+  "type" : "https://docs.api.video/reference/invalid-attribute",
+  "title" : "An attribute is invalid.",
+  "status" : 400,
+  "detail" : "The \"language\" attribute must contain only letters and dashes (for example \"fr\", \"fr-BE\").",
+  "name" : "language"
+}
\ No newline at end of file
diff --git a/tests/resources/payloads/videos/update/responses/400-2.json b/tests/resources/payloads/videos/update/responses/400-2.json
new file mode 100644
index 0000000..fc103e0
--- /dev/null
+++ b/tests/resources/payloads/videos/update/responses/400-2.json
@@ -0,0 +1,7 @@
+{
+  "type" : "https://docs.api.video/reference/invalid-attribute",
+  "title" : "An attribute is invalid.",
+  "status" : 400,
+  "detail" : "The \"language\" attribute is not valid.",
+  "name" : "language"
+}
\ No newline at end of file
diff --git a/tests/resources/payloads/videos/uploadWithUploadToken/responses/201.json b/tests/resources/payloads/videos/uploadWithUploadToken/responses/201.json
index 8aeb102..37424d1 100644
--- a/tests/resources/payloads/videos/uploadWithUploadToken/responses/201.json
+++ b/tests/resources/payloads/videos/uploadWithUploadToken/responses/201.json
@@ -3,6 +3,7 @@
   "playerId" : "pl45KFKdlddgk654dspkze",
   "title" : "Maths video",
   "description" : "An amazing video explaining the string theory",
+  "language" : "en",
   "public" : false,
   "panoramic" : false,
   "tags" : [ "maths", "string theory", "video" ],