Update video information

Deprecated
<Warning>This method is now deprecated. Use the [`PATCH`](/v1.3/api-reference/videos/update) method instead, which provides identical functionality.</Warning> Use this method to update the metadata of a video.

Path parameters

index-idstringRequired
The unique identifier of the index to which the video has been uploaded.
video-idstringRequired
The unique identifier of the video to update.

Headers

x-api-keystringRequired

Request

Request to update the metadata of a video.
user_metadatamap from strings to anyOptional
Metadata that helps you categorize your videos. You can specify a list of keys and values. Keys must be of type `string`, and values can be of the following types: `string`, `integer`, `float` or `boolean`. **Example**: ```JSON "user_metadata": { "category": "recentlyAdded", "batchNumber": 5, "rating": 9.3, "needsReview": true } ``` <Note title="Notes"> - If you want to store other types of data such as objects or arrays, you must convert your data into string values. - You cannot override the following system-generated metadata fields: - `duration` - `filename` - `fps` - `height` - `model_names` - `size` - `video_title` - `width` </Note>

Response

If successful, this method returns a 204 No Content response code. It does not return anything in the response body.

Errors