Get an admin view of invite codes.
Parameters
Output
Encoding
application/jsoncodes
array
Required
No description provided.
cursor
string
Optional
No description provided.
Try It
Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"codes"
],
"properties": {
"codes": {
"type": "array",
"items": {
"ref": "com.atproto.server.defs#inviteCode",
"type": "ref"
}
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"sort": {
"type": "string",
"default": "recent",
"knownValues": [
"recent",
"usage"
]
},
"limit": {
"type": "integer",
"default": 100,
"maximum": 500,
"minimum": 1
},
"cursor": {
"type": "string"
}
}
},
"description": "Get an admin view of invite codes."
}