Revoke an invite. Owner only. Invites are identified by their tokenHash (visible in list output).
Input
Encoding
application/jsonspaceUri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
tokenHash
string
Required
No description available.
Output
Encoding
application/jsonok
boolean
Required
No description available.
Errors
NotFound
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": [
"spaceUri",
"tokenHash"
],
"properties": {
"spaceUri": {
"type": "string",
"format": "at-uri"
},
"tokenHash": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "NotFound"
},
{
"name": "Forbidden"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"ok"
],
"properties": {
"ok": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"description": "Revoke an invite. Owner only. Invites are identified by their tokenHash (visible in list output)."
}