Skip to content

Commit 0700baa

Browse files
author
olivierapivideo
authored
Add video tags endpoint
1 parent aa9ac48 commit 0700baa

File tree

19 files changed

+1495
-30
lines changed

19 files changed

+1495
-30
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22
All changes to this project will be documented in this file.
33

4+
## [1.4.3] - 2024-09-30
5+
- Add /tags API endpoint
6+
47
## [1.4.2] - 2024-09-16
58
- Add discarded video endpoints
69

README.md

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
- [ChaptersApi](#chaptersapi)
2323
- [LiveStreamsApi](#livestreamsapi)
2424
- [PlayerThemesApi](#playerthemesapi)
25+
- [TagsApi](#tagsapi)
2526
- [UploadTokensApi](#uploadtokensapi)
2627
- [VideosApi](#videosapi)
2728
- [WatermarksApi](#watermarksapi)
@@ -68,7 +69,7 @@ Add this dependency to your project's POM:
6869
<dependency>
6970
<groupId>video.api</groupId>
7071
<artifactId>java-api-client</artifactId>
71-
<version>1.4.2</version>
72+
<version>1.4.3</version>
7273
<scope>compile</scope>
7374
</dependency>
7475
```
@@ -78,7 +79,7 @@ Add this dependency to your project's POM:
7879
Add this dependency to your project's build file:
7980

8081
```groovy
81-
implementation "video.api:java-api-client:1.4.2"
82+
implementation "video.api:java-api-client:1.4.3"
8283
```
8384

8485
#### Others
@@ -91,7 +92,7 @@ mvn clean package
9192

9293
Then manually install the following JARs:
9394

94-
* `target/java-api-client-1.4.2.jar`
95+
* `target/java-api-client-1.4.3.jar`
9596
* `target/lib/*.jar`
9697

9798
### Code sample
@@ -248,6 +249,24 @@ Method | HTTP request | Description
248249
[**deleteLogo**](https://github.com/apivideo/api.video-java-client/blob/main/docs/PlayerThemesApi.md#deleteLogo) | **DELETE** `/players/{playerId}/logo` | Delete logo
249250

250251

252+
### TagsApi
253+
254+
255+
#### Retrieve an instance of TagsApi:
256+
```java
257+
ApiVideoClient client = new ApiVideoClient("YOUR_API_KEY");
258+
TagsApi tags = client.tags()
259+
```
260+
261+
262+
263+
#### Endpoints
264+
265+
Method | HTTP request | Description
266+
------------- | ------------- | -------------
267+
[**list**](https://github.com/apivideo/api.video-java-client/blob/main/docs/TagsApi.md#list) | **GET** `/tags` | List all video tags
268+
269+
251270
### UploadTokensApi
252271

253272

@@ -370,6 +389,8 @@ Method | HTTP request | Description
370389
- [FilterBy1](https://github.com/apivideo/api.video-java-client/blob/main/docs/FilterBy1.md)
371390
- [FilterBy2](https://github.com/apivideo/api.video-java-client/blob/main/docs/FilterBy2.md)
372391
- [Link](https://github.com/apivideo/api.video-java-client/blob/main/docs/Link.md)
392+
- [ListTagsResponse](https://github.com/apivideo/api.video-java-client/blob/main/docs/ListTagsResponse.md)
393+
- [ListTagsResponseData](https://github.com/apivideo/api.video-java-client/blob/main/docs/ListTagsResponseData.md)
373394
- [LiveStream](https://github.com/apivideo/api.video-java-client/blob/main/docs/LiveStream.md)
374395
- [LiveStreamAssets](https://github.com/apivideo/api.video-java-client/blob/main/docs/LiveStreamAssets.md)
375396
- [LiveStreamCreationPayload](https://github.com/apivideo/api.video-java-client/blob/main/docs/LiveStreamCreationPayload.md)

0 commit comments

Comments
 (0)