# getDelegatedResourceAccountIndexV2 Query which accounts have delegated resources to other accounts under the V2 interface. (v5.1.0 new interface) ## Usage ```js tronWeb.trx.getDelegatedResourceAccountIndexV2(address) ``` ## Parameters | Parameters | Parameter Description | Data Type | |------------|---------------------------------|-----------| | address | account address (base58 or hex) | String | | options | optional fields | Object | ## Return Object ## Example ```js >const delegationInfo = await tronWeb.trx.getDelegatedResourceAccountIndexV2('TMVQGm1qAQYVdetCeGRRkTWYYrLXuHK2HC') > { "account": "ownerAddress", "toAccounts": [ "toAddress1" ] } ```