Combine albums
POST/api/combineAlbums
Combine 2 or more albums to one
Request
- application/json
Body
albums array
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
removed
object[]
type string
id integer
name string
artist
object
id integer
name integer
cover string
is_compilation boolean
is_single boolean
year integer
albums string
{
"removed": [
{
"type": "string",
"id": 0,
"name": "string",
"artist": {
"id": 0,
"name": 0
},
"cover": "string",
"is_compilation": true,
"is_single": true,
"year": 0
}
],
"albums": "string"
}
Loading...