API: about.json: spotify actions

This commit is contained in:
Arthi-chaud
2022-02-24 20:25:48 +01:00
parent c7affe05b8
commit a11e1cda8d
+44
View File
@@ -0,0 +1,44 @@
[
{
"name": "Spotify",
"actions": [
{
"name": "OnSpotifyAddToPlaylist",
"description": "Event triggered when a song is added to a Spotify playlist",
"params": [
{
"name": "playlistId",
"type": "string",
"description": "The Spotify ID of the playlist to watch"
}
],
"returns": [
{
"name": "ID",
"description": "ID of the added track"
},
{
"name": "NAME",
"description": "Name of the added track"
}
]
},
{
"name": "OnSpotifySaveToLibrary",
"description": "Event triggered when a song is added to a Spotify library",
"params": [],
"returns": [
{
"name": "ID",
"description": "ID of the added track"
},
{
"name": "NAME",
"description": "Name of the added track"
}
]
},
],
"reactions": []
}
]