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 240130e commit 332fbdf
Show file tree
Hide file tree
Showing 12 changed files with 1,164 additions and 16 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.4.3] - 2024-09-30
- Add /tags API endpoint

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

Expand Down
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- [Chapters](#chapters)
- [LiveStreams](#livestreams)
- [PlayerThemes](#playerthemes)
- [Tags](#tags)
- [UploadTokens](#uploadtokens)
- [Videos](#videos)
- [Watermarks](#watermarks)
Expand Down Expand Up @@ -230,6 +231,22 @@ Method | HTTP request | Description
[**DeleteLogo**](https://github.com/apivideo/api.video-go-client/blob/main/docs/PlayerThemes.md#DeleteLogo) | **Delete** `/players/{playerId}/logo` | Delete logo


#### Tags


##### Retrieve an instance of the Tags API:
```golang
client := apivideosdk.ClientBuilder("API_VIDEO_KEY").Build()
tagsApi := client.Tags
```

##### Endpoints

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


#### UploadTokens


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

0 comments on commit 332fbdf

Please sign in to comment.