Get a specific subscription received by the authenticated user (as the recipient/subject). Looks up by subscription record uri or sender DID. These are mutually exclusive; uri takes precedence.
Parameters
Output
Encoding
application/jsonsubscription
refcom.atiproto.subscription#view
Required
The subscription record data
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": [
"subscription"
],
"properties": {
"subscription": {
"ref": "com.atiproto.subscription#view",
"type": "ref",
"description": "The subscription record data"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the subscription record. Takes precedence over sender."
},
"sender": {
"type": "string",
"format": "did",
"description": "DID of the subscriber. Ignored if uri is provided."
}
}
},
"description": "Get a specific subscription received by the authenticated user (as the recipient/subject). Looks up by subscription record uri or sender DID. These are mutually exclusive; uri takes precedence."
}