How can I choose the new 2023-10 api version with the monday.api() call of the nodejs package?

Is there a way to decide which api to use when calling the GraphQL endpoint with monday.api()?

Hello there @Lafisrap,

You can use something like this:

monday.api(query, {
    token,
    variables,
    apiVersion: '2023-10',
});

Cheers,
Matias

2 Likes