Check out our custom Rad TV Developer API . (free or premium OpenAI account required)
Working with Playlists
The Rad TV Developer API allows you to create, update, and manage playlists within a channel. Playlists serve as collections of content that can be organized and displayed to users.
Creating a Playlist
To create a playlist, use the createPlaylist mutation. This requires a channel identifier and a PlaylistInput object for the playlist metadata.
GraphQL Mutation Example:
mutation {
createPlaylist(
channel: "did:rad:channel/5678-wxyz",
input: {
metadata: {
title: "Adventure Playlist",
summary: "A collection of exciting adventure videos"
}
}
) {
id
metadata {
title
summary
}
}
}