GET /subuser/rpc_keys
Retrieves RPC keys for the subuser (i.e. all RPC-keys that were shared with me, being the subuser)
could we aggregate subuser keys directly in GET /user/keys endpoint and add the role there ? or at least return the same payload ? it’s missing a lot of fields that can be updated in the dashboard. I expect we can modify these if we have the “Admin” role ?
interface IApiKey {
active: boolean
allowed_ips: string | null
allowed_origins: string | null
allowed_referers: string | null
allowed_user_agents: string | null
description: string | null
id: number
log_level: TLogLevel | null
log_revert_chance: number | null
private_txs: boolean
secret_key: string
user_id: number
}
GET /subuser/rpc_keys Retrieves RPC keys for the subuser (i.e. all RPC-keys that were shared with me, being the subuser) could we aggregate subuser keys directly in GET /user/keys endpoint and add the role there ? or at least return the same payload ? it’s missing a lot of fields that can be updated in the dashboard. I expect we can modify these if we have the “Admin” role ? interface IApiKey { active: boolean allowed_ips: string | null allowed_origins: string | null allowed_referers: string | null allowed_user_agents: string | null description: string | null id: number log_level: TLogLevel | null log_revert_chance: number | null private_txs: boolean secret_key: string user_id: number }