Get information about a Streamplace broadcaster.
Output
Encoding
application/jsonadmins
array
Optional
Array of DIDs authorized as admins
broadcaster
stringdid
Required
DID of the Streamplace broadcaster to which this server belongs
server
stringdid
Optional
DID of this particular Streamplace server
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"broadcaster"
],
"properties": {
"admins": {
"type": "array",
"items": {
"type": "string",
"format": "did"
},
"description": "Array of DIDs authorized as admins"
},
"server": {
"type": "string",
"format": "did",
"description": "DID of this particular Streamplace server"
},
"broadcaster": {
"type": "string",
"format": "did",
"description": "DID of the Streamplace broadcaster to which this server belongs"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {}
},
"description": "Get information about a Streamplace broadcaster."
}