Skip to content

Commit

Permalink
Add video tags endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierapivideo authored Oct 2, 2024
1 parent 96b2b45 commit f6642d6
Show file tree
Hide file tree
Showing 20 changed files with 1,497 additions and 32 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
All changes to this project will be documented in this file.

## [1.6.3] - 2024-09-30
- Add /tags API endpoint

## [1.6.2] - 2024-09-16
- Add discarded video endpoints

Expand Down
27 changes: 24 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
- [ChaptersApi](#chaptersapi)
- [LiveStreamsApi](#livestreamsapi)
- [PlayerThemesApi](#playerthemesapi)
- [TagsApi](#tagsapi)
- [UploadTokensApi](#uploadtokensapi)
- [VideosApi](#videosapi)
- [WatermarksApi](#watermarksapi)
Expand Down Expand Up @@ -70,7 +71,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>video.api</groupId>
<artifactId>android-api-client</artifactId>
<version>1.6.2</version>
<version>1.6.3</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -80,7 +81,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
implementation "video.api:android-api-client:1.6.2"
implementation "video.api:android-api-client:1.6.3"
```

#### Others
Expand All @@ -93,7 +94,7 @@ mvn clean package

Then manually install the following JARs:

* `target/android-api-client-1.6.2.jar`
* `target/android-api-client-1.6.3.jar`
* `target/lib/*.jar`

### Code sample
Expand Down Expand Up @@ -303,6 +304,24 @@ Method | HTTP request | Description
[**deleteLogo**](https://github.com/apivideo/api.video-android-client/blob/main/docs/PlayerThemesApi.md#deleteLogo) | **DELETE** `/players/{playerId}/logo` | Delete logo


### TagsApi


#### Retrieve an instance of TagsApi:
```kotlin
val client = ApiVideoClient("YOUR_API_KEY")
val tags = client.tags()
```



#### Endpoints

Method | HTTP request | Description
------------- | ------------- | -------------
[**list**](https://github.com/apivideo/api.video-android-client/blob/main/docs/TagsApi.md#list) | **GET** `/tags` | List all video tags


### UploadTokensApi


Expand Down Expand Up @@ -425,6 +444,8 @@ Method | HTTP request | Description
- [FilterBy1](https://github.com/apivideo/api.video-android-client/blob/main/docs/FilterBy1.md)
- [FilterBy2](https://github.com/apivideo/api.video-android-client/blob/main/docs/FilterBy2.md)
- [Link](https://github.com/apivideo/api.video-android-client/blob/main/docs/Link.md)
- [ListTagsResponse](https://github.com/apivideo/api.video-android-client/blob/main/docs/ListTagsResponse.md)
- [ListTagsResponseData](https://github.com/apivideo/api.video-android-client/blob/main/docs/ListTagsResponseData.md)
- [LiveStream](https://github.com/apivideo/api.video-android-client/blob/main/docs/LiveStream.md)
- [LiveStreamAssets](https://github.com/apivideo/api.video-android-client/blob/main/docs/LiveStreamAssets.md)
- [LiveStreamCreationPayload](https://github.com/apivideo/api.video-android-client/blob/main/docs/LiveStreamCreationPayload.md)
Expand Down
Loading

0 comments on commit f6642d6

Please sign in to comment.