@@ -1084,7 +1084,7 @@ paths:
10841084 get :
10851085 tags :
10861086 - playlists
1087- description : Gets a list of playlists by ID
1087+ description : Gets a list of playlists by ID, UPC, or permalink
10881088 operationId : Get Bulk Playlists
10891089 parameters :
10901090 - name : user_id
@@ -1101,6 +1101,15 @@ paths:
11011101 type : array
11021102 items :
11031103 type : string
1104+ - name : permalink
1105+ in : query
1106+ description : The permalink(s) of the playlist(s)
1107+ style : form
1108+ explode : true
1109+ schema :
1110+ type : array
1111+ items :
1112+ type : string
11041113 - name : upc
11051114 in : query
11061115 description : The UPC of the playlist(s)
@@ -1161,37 +1170,6 @@ paths:
11611170 ' 500 ' :
11621171 description : Server error
11631172 content : {}
1164- /playlists/by_permalink/{handle}/{slug} :
1165- get :
1166- tags :
1167- - playlists
1168- description : Get a playlist by handle and slug
1169- operationId : Get Playlist By Handle and Slug
1170- parameters :
1171- - name : handle
1172- in : path
1173- description : playlist owner handle
1174- required : true
1175- schema :
1176- type : string
1177- - name : slug
1178- in : path
1179- description : playlist slug
1180- required : true
1181- schema :
1182- type : string
1183- - name : user_id
1184- in : query
1185- description : The user ID of the user making the request
1186- schema :
1187- type : string
1188- responses :
1189- ' 200 ' :
1190- description : Success
1191- content :
1192- application/json :
1193- schema :
1194- $ref : ' #/components/schemas/playlist_response'
11951173 /playlists/search :
11961174 get :
11971175 tags :
@@ -10415,12 +10393,16 @@ components:
1041510393 create_user_response :
1041610394 type : object
1041710395 properties :
10418- success :
10419- type : boolean
10420- description : Whether the user was created successfully
1042110396 transaction_hash :
1042210397 type : string
1042310398 description : The blockchain transaction hash
10399+ block_hash :
10400+ type : string
10401+ description : The blockchain block hash
10402+ block_number :
10403+ type : integer
10404+ format : int64
10405+ description : The blockchain block number/height
1042410406 user_id :
1042510407 type : string
1042610408 description : The ID of the created user
@@ -10595,12 +10577,16 @@ components:
1059510577 create_comment_response :
1059610578 type : object
1059710579 properties :
10598- success :
10599- type : boolean
10600- description : Whether the comment was created successfully
1060110580 transaction_hash :
1060210581 type : string
1060310582 description : The blockchain transaction hash
10583+ block_hash :
10584+ type : string
10585+ description : The blockchain block hash
10586+ block_number :
10587+ type : integer
10588+ format : int64
10589+ description : The blockchain block number/height
1060410590 comment_id :
1060510591 type : string
1060610592 description : The ID of the created comment
@@ -10644,12 +10630,16 @@ components:
1064410630 write_response :
1064510631 type : object
1064610632 properties :
10647- success :
10648- type : boolean
10649- description : Whether the operation was successful
1065010633 transaction_hash :
1065110634 type : string
1065210635 description : The blockchain transaction hash
10636+ block_hash :
10637+ type : string
10638+ description : The blockchain block hash
10639+ block_number :
10640+ type : integer
10641+ format : int64
10642+ description : The blockchain block number/height
1065310643 playlist_artwork :
1065410644 type : object
1065510645 properties :
@@ -11116,6 +11106,13 @@ components:
1111611106 transaction_hash :
1111711107 type : string
1111811108 description : Transaction hash of the creation
11109+ block_hash :
11110+ type : string
11111+ description : The blockchain block hash
11112+ block_number :
11113+ type : integer
11114+ format : int64
11115+ description : The blockchain block number/height
1111911116 playlist_response :
1112011117 required :
1112111118 - latest_chain_block
@@ -12203,12 +12200,16 @@ components:
1220312200 create_playlist_response :
1220412201 type : object
1220512202 properties :
12206- success :
12207- type : boolean
12208- description : Whether the playlist was created successfully
1220912203 transaction_hash :
1221012204 type : string
1221112205 description : The blockchain transaction hash
12206+ block_hash :
12207+ type : string
12208+ description : The blockchain block hash
12209+ block_number :
12210+ type : integer
12211+ format : int64
12212+ description : The blockchain block number/height
1221212213 playlist_id :
1221312214 type : string
1221412215 description : The ID of the created playlist
@@ -13074,12 +13075,16 @@ components:
1307413075 create_track_response :
1307513076 type : object
1307613077 properties :
13077- success :
13078- type : boolean
13079- description : Whether the track was created successfully
1308013078 transaction_hash :
1308113079 type : string
1308213080 description : The blockchain transaction hash
13081+ block_hash :
13082+ type : string
13083+ description : The blockchain block hash
13084+ block_number :
13085+ type : integer
13086+ format : int64
13087+ description : The blockchain block number/height
1308313088 track_id :
1308413089 type : string
1308513090 description : The ID of the created track
0 commit comments