Hyperion
  1. Input Controls
Hyperion
  • JSON-RPC API Introduction
  • JSON-API Commands Overview
  • Connect to Hyperion
  • Components & Priorities
  • Hyperion API
    • Authorization
      • API Authentication - Introduction
      • createToken
      • renameToken
      • deleteToken
      • getTokenlist
      • tokenRequired
      • adminRequired
      • newPasswordRequired
      • requestToken
      • newPassword
      • answerRequest
      • getPendingTokenRequests
      • login
      • logout
    • Information
      • getSystemInformation
      • getSubscriptionInformation
      • getServerInformation
      • getImageSnapshot
      • getLedsSnapshot
    • Controls
      • Input Controls
        • setColor
          POST
        • setEffect
          POST
        • setImage
          POST
        • clear
          POST
        • clearAll
          POST
        • selectSource
          POST
      • Output Controls
        • adjustColors
        • setLedMapping
        • setVideomode
      • Subscription Controls
        • liveImageStream
        • liveLedColorStream
      • Operational Controls
        • setComponentState
        • setInstanceState
        • switchInstance
        • setSystemState
        • setSubscriptions
    • Configuration
      • createInstance
      • deleteInstance
      • renameInstance
      • getConfiguration
      • updateConfiguration
      • restoreConfiguration
      • getSchemas
  1. Input Controls

selectSource

Testing Env
https://{{host}}:8092
Testing Env
https://{{host}}:8092
POST
/json-rpc/input/source
Sources are always selected automatically by priority (lowest value is the highest priority).
You can make a given priority the top one. Current priority values are available via serverinfo Priorities.
To get back to auto selecttion, priovide auto = true.
Note: You can only select priorities which are active:true!
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location -g --request POST 'https://localhost:8092/json-rpc/input/source' \
--header 'Content-Type: application/json' \
--data-raw '{
    "command": "sourceselect",
    "instance": [
        0
    ],
    "priority": 50,
    "tan": 4711
}'
Response Response Example
{
    "command": "sourceselect",
    "success": true,
    "tan": 4711
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Modified at 2025-05-18 17:30:36
Previous
clearAll
Next
adjustColors
Built with