Redeem an invite token. The JWT issuer becomes a member of the space with the invite's perms.
Input
Encoding
application/jsontoken
string
Required
No description available.
Output
Encoding
application/jsonperms
string
Required
No description available.
Known values:
read, writespaceUri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Errors
InvalidInvite
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": [
"token"
],
"properties": {
"token": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "InvalidInvite"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"spaceUri",
"perms"
],
"properties": {
"perms": {
"type": "string",
"knownValues": [
"read",
"write"
]
},
"spaceUri": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"description": "Redeem an invite token. The JWT issuer becomes a member of the space with the invite's perms."
}