/account/mosaic/definition/page - NEM
Example code for the /account/mosaic/definition/page rest method. Сomplete guide on how to use /account/mosaic/definition/page rest in GetBlock.io Web3 documentation.
Parameters
address
-
The address of the account.
parent
-
The optional parent namespace id.
id
-
The optional mosaic definition database id up to which mosaic definitions are returned.
Request
curl --location --request GET 'https://go.getblock.io/<ACCESS-TOKEN>/account/mosaic/definition/page?address=NC4T246ALCPNBTAOCSC5EAVFMDFBOACSQAF6WKHV' \
--header 'Content-Type: application/json'
Response
{
"data": [
{
"creator": "10cfe522fe23c015b8ab24ef6a0c32c5de78eb55b2152ed07b6a092121187100",
"id": {
"namespaceId": "makoto.metal.coins",
"name": "silver coin"
},
"description": "Real silver coins, pure silver",
"properties": [
{
"name": "divisibility",
"value": "0"
},
{
"name": "initialSupply",
"value": "1000"
},
{
"name": "supplyMutable",
"value": "false"
},
{
"name": "transferable",
"value": "true"
}
]
}
]
}
Last updated