How to use token id in unity?

we have 7 cars

its try it out in website,but its .net code, we have to use unity

requset code as below:

private async Task GetAllTokenIds(IWeb3Api web3Api)
{
bool result = true;
try
{
NftCollection resp = await web3Api.Token.GetAllTokenIds(“0x06012c8cf97BEaD5deAe237070F9587f8E7A266d”, ChainList.eth, null, “”, 10);
result = resp is { };
}
catch (Exception exp)
{
result = false;
}
return result;
}

respose code:

{
“total”: 7,
“page”: 0,
“page_size”: 100,
“cursor”: null,
“result”: [
{
“token_hash”: “f85a75d2a21f1cae234abf49878d9b4f”,
“token_address”: “0xe3ced1e769bb4bd79e63c8a00e3ccd4db952a95d”,
“token_id”: “7”,
“block_number_minted”: “4175001”,
“amount”: “3”,
“contract_type”: “ERC1155”,
“name”: “Crosschain Rally”,
“symbol”: “XCARS”,
“token_uri”: “https://objectstorage.us-ashburn-1.oraclecloud.com/n/idq81xwyo207/b/CrossChainRally/o/7.json”,
“metadata”: null,
“last_token_uri_sync”: “2022-08-15T17:46:34.405Z”,
“last_metadata_sync”: “2022-08-15T17:46:44.083Z”
},

how to use to look for token id in unity?
please help!

tks! it is emrgency!

tks!! guys!

the token id is here, this is what you are looking for?