Create or update an AppView read mark.
Input
Encoding
application/jsonreadAt
stringdatetime
Optional
An RFC 3339 formatted timestamp.
subjectUri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Output
Encoding
application/jsonErrors
InvalidRequest
UpstreamUnavailable
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": [
"subjectUri"
],
"properties": {
"readAt": {
"type": "string",
"format": "datetime"
},
"subjectUri": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "InvalidRequest"
},
{
"name": "UpstreamUnavailable"
}
],
"output": {
"schema": {
"type": "object",
"properties": {}
},
"encoding": "application/json"
},
"description": "Create or update an AppView read mark."
}