Hi there, I would recommend you to head to Near Discord server ( near.chat ) . There is a dev support channel and office hours there that can assist you in details.
All the best!
Thank you for your patience! Since the dev team is working on schedule for office hours so I believe they will get to you. You can also look at the schedule of the live office hours here to attend: Developer Office Hours - Help, Q&A, and more
Hi, I had a similar issue when I was learning on Dacade. The error you’re seeing usually means that the function you’re calling expects a parameter called id, but it’s missing in your near call command. Make sure you’re passing it like this: near call <contract-name> <method-name> '{"id": "your_value"}' --accountId <your-account.testnet>. Also, double-check that your function in the smart contract is actually set to receive id as a string. That fixed it for me. Hope it helps!