Appeal a moderation decision on the authenticated user's own account or content.
Input
Encoding
application/jsonlabelValue
string
Optional
No description available.
message
string
Required
No description available.
maxLength: 4000 bytessubjectCid
stringcid
Optional
A content identifier (CID) referencing immutable data.
subjectDid
stringdid
Optional
A decentralized identifier (DID).
subjectUri
stringat-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Output
Encoding
application/jsoncreatedAt
stringdatetime
Required
An RFC 3339 formatted timestamp.
id
integer
Required
No description available.
Errors
InvalidRequest
Forbidden
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": [
"message"
],
"properties": {
"message": {
"type": "string",
"maxLength": 4000
},
"labelValue": {
"type": "string"
},
"subjectCid": {
"type": "string",
"format": "cid"
},
"subjectDid": {
"type": "string",
"format": "did"
},
"subjectUri": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "InvalidRequest"
},
{
"name": "Forbidden"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"id",
"createdAt"
],
"properties": {
"id": {
"type": "integer"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"encoding": "application/json"
},
"description": "Appeal a moderation decision on the authenticated user's own account or content."
}