Get accounts by authorizers

post

Given a set of account names and public keys, find all account permission authorities that are, in part or whole, satisfiable

Body
keysstring[]Optional

List of authorizing keys

Responses
200
OK
application/json
post
POST /v1/chain/get_accounts_by_authorizers HTTP/1.1
Host: eos.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 37

{
  "accounts": [
    "text"
  ],
  "keys": [
    "text"
  ]
}
200

OK

{
  "accounts": [
    {
      "account_name": "text",
      "permission_name": "text",
      "authorizer": "text",
      "weight": 1,
      "threshold": 1
    }
  ]
}