DspTag
Last updated
Last updated
GET
https://api.idol.io/api/v2/dsp-tags
Authorization*
string
Bearer <token>
Content-Type*
string
application/vnd.api+json
{
"data": [
{
"id": "<ID>",
"type": "dsp-tags",
"links": {
"self": "https://api.idol.io/api/v2/dsp-tags/<ID>"
},
"attributes": {
"created-at": "2022-12-01T07:06:10.769+01:00",
"updated-at": "2022-12-01T07:06:10.769+01:00",
"name": "Other",
"distributor-id": 1
}
},
{
"id": "<ID>",
"type": "dsp-tags",
"links": {
"self": "https://api.idol.io/api/v2/dsp-tags/<ID>"
},
"attributes": {
"created-at": "2022-12-01T07:06:10.776+01:00",
"updated-at": "2022-12-01T07:06:10.776+01:00",
"name": "Standard",
"distributor-id": 1
}
},
{
"id": "<ID>",
"type": "dsp-tags",
"links": {
"self": "https://api.idol.io/api/v2/dsp-tags/<ID>"
},
"attributes": {
"created-at": "2022-12-01T07:06:10.786+01:00",
"updated-at": "2022-12-01T07:06:10.786+01:00",
"name": "UGC",
"distributor-id": 1
}
}
],
"meta": {
"record-count": 76,
"page-count": 26
},
"links": {
"first": "https://api.idol.io/api/v2/dsp-tags?page%5Bnumber%5D=1&page%5Bsize%5D=3",
"next": "https://api.idol.io/api/v2/dsp-tags?page%5Bnumber%5D=2&page%5Bsize%5D=3",
"last": "https://api.idol.io/api/v2/dsp-tags?page%5Bnumber%5D=26&page%5Bsize%5D=3"
}
}
api/v2/dsp-tags?filter[distributor-id]=1
GET
https://api.idol.io/api/v2/dsp-tags/:id
id*
number
ID of the DspTag
Authorization*
string
Bearer <token>
Content-Type*
string
application/vnd.api+json
{
"data": {
"id": "<ID>",
"type": "dsp-tags",
"links": {
"self": "https://api.idol.io/api/v2/dsp-tags/<ID>"
},
"attributes": {
"created-at": "2023-12-01T07:06:10.769+01:00",
"updated-at": "2023-12-01T07:06:10.769+01:00",
"name": "Other",
"distributor-id": 1
}
}
}