Files
bsky-social-app/lexicons/com/atproto/admin/getInviteCodes.json
T
2026-08-13 12:26:12 -07:00

55 lines
1.2 KiB
JSON

{
"id": "com.atproto.admin.getInviteCodes",
"defs": {
"main": {
"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."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}