Skip to content
Hoody.com

Use these query parameters with the versioned display client endpoint to toggle printing, file transfer, video encoding, MediaSource video, and notification features. The endpoint serves the HTML5 client interface; the flags documented here control which capabilities the loaded client exposes to the end user, independent of session-level settings on the server.

This page covers only the feature-toggle subset of the URL parameters accepted by the client endpoint. Routing parameters, rendering parameters, input parameters, clipboard parameters, sharing parameters, and debug flags are documented separately.

Serves the HTML5 display client web interface with URL-based feature configuration. This is the standardized API version of the root display endpoint and accepts the same query parameters, including the feature-toggle flags listed below.

NameInTypeRequiredDescription
printingquerybooleanNoEnable printing support. Default: true
file_transferquerybooleanNoEnable file transfer support. Default: true
videoquerybooleanNoEnable video encoding support. Default: true
mediasource_videoquerybooleanNoEnable MediaSource API for video. Default: true
notification_server_urlquerystringNoExternal notification server URL for real-time notification integration. See URL format details below.
web_notificationsquerybooleanNoEnable browser web notifications (native OS notifications). Default: true
display_notificationsquerybooleanNoShow notifications within display UI. Default: true
notification_connection_typequerystringNoNotification server connection type. Allowed values: websocket, polling. Default: "websocket"

This endpoint takes no request body.

The endpoint returns the HTML5 client interface as text/html.

<!DOCTYPE html>
<html>
<head><title>Hoody Display Client</title></head>
<body>
<!-- Display HTML5 client interface -->
</body>
</html>
Terminal window
curl -G "https://{projectId}-{containerId}-display-1.{server}.containers.hoody.com/api/v1/display/" \
--data-urlencode "printing=true" \
--data-urlencode "file_transfer=true" \
--data-urlencode "video=true" \
--data-urlencode "mediasource_video=true" \
--data-urlencode "notification_server_url=https://{projectId}-{containerId}-n-1.{server}.containers.hoody.com/notification-client.js" \
--data-urlencode "web_notifications=true" \
--data-urlencode "display_notifications=true" \
--data-urlencode "notification_connection_type=websocket"