delete_release_rating
Remove a user's rating for a specific music release on Discogs by providing the username and release ID. Simplify catalog management and update ratings as needed.
Instructions
Deletes the release's rating for a given user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
release_id | Yes | ||
username | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"release_id": {
"minimum": 1,
"type": "number"
},
"username": {
"minLength": 1,
"type": "string"
}
},
"required": [
"username",
"release_id"
],
"type": "object"
}