The meeting number is not found

Format Your New Topic as Follows:

Meeting SDK Type and Version
@zoom/meetingsdk”: “^3.10.0”

Description
I’m using meetingsdk-react-sample and meetingsdk-auth-endpoint-sample for my POC on meeting SDK and getting the below error message while Joining the meeting. I have entered a random meetingNumber here. I have checked the signature token, getting the same meetingNumber there as well. Am I missing anything?
app config:
const authEndpoint = “localhost:4000”;
const sdkKey = “****”;
const meetingNumber = “123456789”;
const passWord = “”;
const role = 1;
const userName = “React”;
const userEmail = “”;
const registrantToken = “”;
const zakToken = “”;
const leaveUrl = “localhost:5173”;

Signature token decode from jwt website:
{
“appKey”: “*”,
“sdkKey”: “**”,
“mn”: “123456789”,
“role”: 1,
“iat”: 1736001316,
“exp”: 1736008516,
“tokenExp”: 1736008516
}

Error?
{
errorCode: 3707,
errorMessage: “The meeting number is not found.”,
method: “join”,
result: “The meeting number is not found.”,
status: false,
}

Troubleshooting Routes
I have used the below repo from the given document
zoom/meetingsdk-react-sample
zoom/meetingsdk-auth-endpoint-sample

How To Reproduce
Steps to reproduce the behavior including:
*1. not implemented any authentication