All URIs are relative to https://home.ourflix.de:32865/emby
Method | HTTP request | Description |
---|---|---|
get_branding_configuration | GET /Branding/Configuration | Gets branding configuration |
get_branding_css | GET /Branding/Css | Gets custom css |
get_branding_css_css | GET /Branding/Css.css | Gets custom css |
BrandingBrandingOptions get_branding_configuration()
Gets branding configuration
No authentication required
from __future__ import print_function
import time
import embyapi
from embyapi.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = embyapi.BrandingServiceApi()
try:
# Gets branding configuration
api_response = api_instance.get_branding_configuration()
pprint(api_response)
except ApiException as e:
print("Exception when calling BrandingServiceApi->get_branding_configuration: %s\n" % e)
This endpoint does not need any parameter.
No authorization required
- Content-Type: Not defined
- Accept: application/json, application/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
get_branding_css()
Gets custom css
No authentication required
from __future__ import print_function
import time
import embyapi
from embyapi.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = embyapi.BrandingServiceApi()
try:
# Gets custom css
api_instance.get_branding_css()
except ApiException as e:
print("Exception when calling BrandingServiceApi->get_branding_css: %s\n" % e)
This endpoint does not need any parameter.
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
get_branding_css_css()
Gets custom css
No authentication required
from __future__ import print_function
import time
import embyapi
from embyapi.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = embyapi.BrandingServiceApi()
try:
# Gets custom css
api_instance.get_branding_css_css()
except ApiException as e:
print("Exception when calling BrandingServiceApi->get_branding_css_css: %s\n" % e)
This endpoint does not need any parameter.
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]