getAssetsByIssuer

Get asset information given multiple creation account IDs in reverse block height of creation order.

Request: requestType is getAssetsByIssuer account is one of the multiple account IDs account is one of the multiple account IDs firstIndex is a zero-based index to the first asset to retrieve (optional) lastIndex is zero-based index to the last asset to retrieve (optional)

Response:

(A) assets is the array of asset objects (refer to Get Asset)

(N) requestProcessingTime is the API request processing time (in millisec)

Example:

Request:

http://localhost:801/BEAM?requestType=getAssetsByIssuer&account=1494753212313950790&account=5970910749481183928

Response:

{ “assets”: [ [ { “quantityQNT”: “100000000”, “numberOfAccounts”: 19, “accountRS”: “BEAM-7X92-29W5-7LQA-4V8CH”, “decimals”: 2, “numberOfTransfers”: 0, “name”: “BoB1Pos”, “description”: “Asset description 123”, “numberOfTrades”: 35, “asset”: “15511449532155436028”, “account”: “1494753212313950790” } ], [ { “quantityQNT”: “80000000000000”, “numberOfAccounts”: 6, “accountRS”: “BEAM-7X92-29W5-7LQA-4V8CH”, “decimals”: 6, “numberOfTransfers”: 3, “name”: “GMK”, “description”: “Asset description 456”, “numberOfTrades”: 2, “asset”: “8141917335139373659”, “account”: “5970910749481183928” } ] ], “requestProcessingTime”: 3 }

Last updated