Something went wrong. Try again.
atproto made easy crates.io/crates/jacquard
atproto rust
Something went wrong. Try again.
860 B · 42 lines
JSON
at bos-beta
123456789101112131415161718192021222324252627282930313233343536373839404142{ "lexicon": 1, "id": "com.atproto.server.createInviteCode", "defs": { "main": { "type": "procedure", "description": "Create an invite code.", "input": { "encoding": "application/json", "schema": { "type": "object", "required": [ "useCount" ], "properties": { "forAccount": { "type": "string", "format": "did" }, "useCount": { "type": "integer" } } } }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": [ "code" ], "properties": { "code": { "type": "string" } } } } } }}