DistributorProductSubgenres
Last updated
Last updated
GET
https://api.idol.io/api/v2/distributor-product-subgenres
Authorization*
string
Bearer <token>
Content-Type*
string
application/vnd.api+json
{
"data": [
{
"id": "<ID>",
"type": "distributor-product-subgenres",
"links": {
"self": "https://api.idol.io/api/v2/distributor-product-subgenres/<ID>"
},
"attributes": {
"name": "Pop - Rock: Alternative - Indie"
}
},
{
"id": "<ID>",
"type": "distributor-product-subgenres",
"links": {
"self": "https://api.idol.io/api/v2/distributor-product-subgenres/<ID>"
},
"attributes": {
"name": "Pop - Rock: Rock"
}
},
{
"id": "<ID>",
"type": "distributor-product-subgenres",
"links": {
"self": "https://api.idol.io/api/v2/distributor-product-subgenres/<ID>"
},
"attributes": {
"name": "Pop - Rock: Pop"
}
}
],
"meta": {
"record-count": 2034,
"page-count": 678
},
"links": {
"first": "https://api.idol.io/api/v2/distributor-product-subgenres?page%5Bnumber%5D=1&page%5Bsize%5D=3",
"next": "https://api.idol.io/api/v2/distributor-product-subgenres?page%5Bnumber%5D=2&page%5Bsize%5D=3",
"last": "https://api.idol.io/api/v2/distributor-product-subgenres?page%5Bnumber%5D=678&page%5Bsize%5D=3"
}
}
/api/v2/distributor-product-subgenres?filter[name]=Rock
GET
https://api.idol.io/api/v2/distributor-product-subgenres/:id
id*
number
ID of the DistributorProductSubgenre
Authorization*
string
Bearer <token>
Content-Type*
string
application/vnd.api+json
{
"data": {
"id": "<ID>",
"type": "distributor-product-subgenres",
"links": {
"self": "https://api.idol.io/api/v2/distributor-product-subgenres/<ID>"
},
"attributes": {
"name": "Pop - Rock: Alternative - Indie"
}
}
}