Skip to main content
Version: 5.7.0

GetBlockchainItems

Retrieves the blockchain items owned by the caller.

ServiceOperation
blockchainGET_BLOCKCHAIN_ITEMS

Method Parameters

ParameterDescription
integrationIdThe blockchain integration id. Currently only 'default' is supported.
contextJsonOptional. Reserved for future use.

Usage

http://localhost:3000
string integrationId = "default";
string contextJson = "{}";
SuccessCallback successCallback = (response, cbObject) =>
{
Debug.Log(string.Format("Success | {0}", response));
};
FailureCallback failureCallback = (status, code, error, cbObject) =>
{
Debug.Log(string.Format("Failed | {0} {1} {2}", status, code, error));
};

_bc.BlockchainService.GetBlockchainItems(integrationId, contextJson, successCallback, failureCallback);
JSON Response
{
"data": {
"success": true,
"response": {
"items": [
{
"key": "...........m2",
"payer": "eosio.nftram",
"json": {
"id": 290,
"mint_date": "2022-10-19T13:03:10",
"serial_number": 17,
"token_factory_id": 22
}
}
]
}
},
"status": 200
}