obs-get-persistent-data
Retrieve stored data values from OBS Studio's persistent storage realms to access saved settings and configurations for scenes or profiles.
Instructions
Gets the value of a slot from the selected persistent data realm
Input Schema
Name | Required | Description | Default |
---|---|---|---|
realm | Yes | The data realm to select. OBS_WEBSOCKET_DATA_REALM_GLOBAL or OBS_WEBSOCKET_DATA_REALM_PROFILE | |
slotName | Yes | The name of the slot to retrieve data from |
Input Schema (JSON Schema)
{
"properties": {
"realm": {
"description": "The data realm to select. OBS_WEBSOCKET_DATA_REALM_GLOBAL or OBS_WEBSOCKET_DATA_REALM_PROFILE",
"type": "string"
},
"slotName": {
"description": "The name of the slot to retrieve data from",
"type": "string"
}
},
"required": [
"realm",
"slotName"
],
"type": "object"
}