User Listing
Last updated
GET /accounts/
Returns a list of all user accounts, excluding those with Standard Registry and Auditor roles.
Authentication: Bearer token required (Authorization: Bearer <token>)
Permission: Permissions.ACCOUNTS_ACCOUNT_READ
No request body or parameters required.
Status: 200 OK
[
{
"username": "example_user",
"role": "USER",
"did": "did:hedera:testnet:zHcDLGFNymFAJiMBKnpbHDgjvTn6yZnwkPPeFhtJBECH_0.0.4532001",
"hederaAccountId": "0.0.4532001",
"confirmed": true,
"failed": false
}
]401 Unauthorized
Missing or invalid token
403 Forbidden
Insufficient permissions
500 Internal Server Error
Unexpected server failure
Last updated