Get an actor's currently listening status.
Parameters
Output
Encoding
application/jsondid
stringdid
Required
A decentralized identifier (DID).
isListening
boolean
Required
No description available.
message
string
Optional
No description available.
status
reffm.teal.feed.defs#playView
Optional
No description available.
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": [
"did",
"isListening"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"status": {
"ref": "fm.teal.feed.defs#playView",
"type": "ref"
},
"message": {
"type": "string"
},
"isListening": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"actor"
],
"properties": {
"actor": {
"type": "string",
"description": "The actor's DID or AT Protocol handle."
}
}
},
"description": "Get an actor's currently listening status."
}