PUT
/
streaming
/
quality_sets
/
default
Python
from gcore import Gcore

client = Gcore(
    api_key="My API Key",
)
quality_sets = client.streaming.quality_sets.set_default()
print(quality_sets.live)
{
  "live": [
    {
      "id": 77,
      "name": "Live 4K UHD 60fps AV1 (custom)",
      "default": true,
      "qualities": [
        {
          "id": 1,
          "name": "vod2160n"
        },
        {
          "id": 2,
          "name": "vod1440n"
        }
      ]
    }
  ],
  "vod": []
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Body

application/json

Response

200
application/json

Successful

The response is of type object.