Report a record in a Circle Space
Input
Encoding
application/jsondetails
string
Optional
No description available.
maxLength: 500 bytesreason
string
Required
No description available.
space
stringspace-ref
Required
No description available.
uri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Output
Encoding
application/jsonid
string
Required
Canonical lowercase hyphenated RFC 4122 UUID.
Errors
AuthRequired
AccessRemoved
UnsupportedPDS
ProtocolRevisionMismatch
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": [
"space",
"uri",
"reason"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"space": {
"type": "string",
"format": "space-ref"
},
"reason": {
"enum": [
"spam",
"abuse",
"other"
],
"type": "string"
},
"details": {
"type": "string",
"maxLength": 500
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthRequired"
},
{
"name": "AccessRemoved"
},
{
"name": "UnsupportedPDS"
},
{
"name": "ProtocolRevisionMismatch"
},
{
"name": "UpstreamUnavailable"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"maxLength": 36,
"minLength": 36,
"description": "Canonical lowercase hyphenated RFC 4122 UUID."
}
}
},
"encoding": "application/json"
},
"description": "Report a record in a Circle Space"
}