Subscribe to post alerts from an actor the viewer follows.
Input
Encoding
application/jsonsubject
stringdid
Required
A decentralized identifier (DID).
Output
Encoding
application/jsonsubscribed
boolean
Required
No description available.
Errors
NotFollowing
SelfSubscribe
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"subject"
],
"properties": {
"subject": {
"type": "string",
"format": "did"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "NotFollowing"
},
{
"name": "SelfSubscribe"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"subscribed"
],
"properties": {
"subscribed": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"description": "Subscribe to post alerts from an actor the viewer follows."
}