DspTag

List DspTags

GET https://api.idol.io/api/v2/dsp-tags

Headers

Name
Type
Description

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"
  }
}

Filter resources

api/v2/dsp-tags?filter[distributor-id]=1

Get DspTag

GET https://api.idol.io/api/v2/dsp-tags/:id

Path Parameters

Name
Type
Description

id*

number

ID of the DspTag

Headers

Name
Type
Description

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
    }
  }
}

Last updated