Hi everyone,
I have the checksum problem for no reason, i create my own function to generate the checksum (working perfectly fine with main bbb api), so i think the problem is comming from my parameters construction. I really tried every combination, using 'create' before parameters to construct the checksum like the main api create for room. Please o really need help for this to get in production next week. I construct my parameter with this way:
```
const queryStringWebhook = `callbackURL=${encodeURIComponent(callbackURL)}&meetingID=${encodeURIComponent(meeting_id)}`;
const checksumWebhook = GenerateChecksum(secret, `create${queryStringWebhook}`);
const urlWebhook = `${baseURL}/create?${queryStringWebhook}&checksum=${checksumWebhook}`;
```