obs-call-vendor-request
Execute vendor-specific requests in OBS Studio by specifying the vendor name and request type to perform custom operations through the OBS WebSocket interface.
Instructions
Call a request registered to a vendor
Input Schema
Name | Required | Description | Default |
---|---|---|---|
requestData | No | Object containing appropriate request data | |
requestType | Yes | The request type to call | |
vendorName | Yes | Name of the vendor to use |
Input Schema (JSON Schema)
{
"properties": {
"requestData": {
"additionalProperties": {},
"description": "Object containing appropriate request data",
"type": "object"
},
"requestType": {
"description": "The request type to call",
"type": "string"
},
"vendorName": {
"description": "Name of the vendor to use",
"type": "string"
}
},
"required": [
"vendorName",
"requestType"
],
"type": "object"
}