atproto blogging
at main 53 lines 1.2 kB view raw
1{ 2 "lexicon": 1, 3 "id": "com.atproto.admin.getInviteCodes", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get an admin view of invite codes.", 8 "parameters": { 9 "type": "params", 10 "properties": { 11 "cursor": { 12 "type": "string" 13 }, 14 "limit": { 15 "type": "integer", 16 "default": 100, 17 "minimum": 1, 18 "maximum": 500 19 }, 20 "sort": { 21 "type": "string", 22 "default": "recent", 23 "knownValues": [ 24 "recent", 25 "usage" 26 ] 27 } 28 } 29 }, 30 "output": { 31 "encoding": "application/json", 32 "schema": { 33 "type": "object", 34 "required": [ 35 "codes" 36 ], 37 "properties": { 38 "codes": { 39 "type": "array", 40 "items": { 41 "type": "ref", 42 "ref": "com.atproto.server.defs#inviteCode" 43 } 44 }, 45 "cursor": { 46 "type": "string" 47 } 48 } 49 } 50 } 51 } 52 } 53}