Description Usage Arguments Details Examples
Get versions of the given master release
1 2 3 4 5 | get_master_release_versions(
release_id,
options = list(),
token = NA
)
|
master_id |
Integer value representing a valid master ID |
options |
(optional) Parameters, see Details |
token |
(optional) Token object obtained from authorize() or a string containing your personal access token |
This function supports Pagination parameters. Below is a list of available fields.
page: integer, the page you want to request; example: 1
per_page: integer, the number of items per page; example: 50
format: string, the format to filter; example: "Vinyl"
label: string, the label to filter; example: "Scorpio Music"
released: string, the release year to filter; example: "1992"
country: string, the country to filter; example: "Belgium"
sort: string, sort items by these fields: released, title, format, label, catno, country
sort_order: string, sort items in a particular order; example: "asc"
1 2 3 4 5 6 | # Retrieve the master versions
stats <- get_master_release_versions(1000)
# Retrieve the master versions with optional parameters
stats <- get_master_release_versions(1000,
options = list("page" = 1, "per_page" = 50, "format" = "Vinyl"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.