add_to_wantlist
Add a music release to a specified user's Discogs wantlist by providing the username, release ID, optional notes, and a rating. Manage music catalog preferences efficiently.
Instructions
Add a release to a user's wantlist
Input Schema
Name | Required | Description | Default |
---|---|---|---|
notes | No | ||
rating | No | ||
release_id | Yes | ||
username | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"notes": {
"type": "string"
},
"rating": {
"maximum": 5,
"minimum": 0,
"type": "integer"
},
"release_id": {
"minimum": 1,
"type": "number"
},
"username": {
"minLength": 1,
"type": "string"
}
},
"required": [
"username",
"release_id"
],
"type": "object"
}