Create an invite code.
Input
Encoding
application/jsonforAccount
stringdid
Optional
A decentralized identifier (DID).
useCount
integer
Required
No description provided.
Output
Encoding
application/jsoncode
string
Required
No description provided.
Try It
Direct PDS XRPC methods (com.atproto.*) are disabled in Try It for security reasons.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"useCount"
],
"properties": {
"useCount": {
"type": "integer"
},
"forAccount": {
"type": "string",
"format": "did"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"code"
],
"properties": {
"code": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"description": "Create an invite code."
}