comAtprotoAdminSearchAccounts top-level constant
com.atproto.admin.searchAccounts
Implementation
const comAtprotoAdminSearchAccounts = <String, dynamic>{
"lexicon": 1,
"id": "com.atproto.admin.searchAccounts",
"defs": {
"main": {
"type": "query",
"description": "Get list of accounts that matches your search query.",
"parameters": {
"type": "params",
"properties": {
"email": {"type": "string"},
"cursor": {"type": "string"},
"limit": {
"type": "integer",
"default": 50,
"minimum": 1,
"maximum": 100
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["accounts"],
"properties": {
"cursor": {"type": "string"},
"accounts": {
"type": "array",
"items": {
"type": "ref",
"ref": "com.atproto.admin.defs#accountView"
}
}
}
}
}
}
}
};