I am working on a small project and I am facing the next issue

at processTicksAndRejections (node:internal/process/task_queues:83:21) {
code: 453,
allErrors: [
{
message: ‘You currently have Essential access which includes access to Twitter API v2 endpoints only. If you need access to this endpoint, you’ll need to apply for Elevated access via the Developer Portal. You can learn more here: Getting Started with the Twitter API | Docs | Twitter Developer Platform’,
code: 453
}
],
twitterReply: { errors: [ [Object] ] },
statusCode: 403

I tried to apply for the V2 a few days ago and this is the current status

So id like to know if I should check something else from my end?

Here is the small function

function postReTweet(id) {
    return new Promise((resolve, reject) => {
        let params = {
            id,
        }
        twit.post('statuses/retweet/:id', params, (error, data) => {
            if (error) {
                return reject(error);
            }
            return resolve(data);
        })
    })
}