No description available.
Input
Encoding
application/jsoncontent
string
Required
Replacement comment text.
maxLength: 10000 bytesmaxGraphemes: 1000 graphemesuri
stringat-uri
Required
AT URI of the app.bivri.feed.comment record to edit. It must live in the authenticated member's own repository.
Output
Encoding
application/jsoncid
stringcid
Required
CID the edited comment record now carries.
uri
stringat-uri
Required
AT URI of the edited comment record.
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": [
"uri",
"content"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the app.bivri.feed.comment record to edit. It must live in the authenticated member's own repository."
},
"content": {
"type": "string",
"maxLength": 10000,
"description": "Replacement comment text.",
"maxGraphemes": 1000
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"cid"
],
"properties": {
"cid": {
"type": "string",
"format": "cid",
"description": "CID the edited comment record now carries."
},
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the edited comment record."
}
}
},
"encoding": "application/json"
}
}