add_release_to_user_collection_folder
Add a specific music release to a designated folder in a user's Discogs collection by providing the username, folder ID, and release ID. Streamlines catalog organization for music enthusiasts.
Instructions
Add a release to a folder in a user's collection. The folder_id must be non-zero.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder_id | Yes | ||
release_id | Yes | ||
username | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"folder_id": {
"minimum": 1,
"type": "integer"
},
"release_id": {
"minimum": 1,
"type": "number"
},
"username": {
"minLength": 1,
"type": "string"
}
},
"required": [
"username",
"folder_id",
"release_id"
],
"type": "object"
}