Identify user based on the JWT attached with request

Yes, as I can see my JWT token inside the ctx.
I tried this code, which works perfectly:
const user = await strapi.plugins[‘users-permissions’].services.jwt.getToken(ctx);

With ctx.state.user, I have systematically “undefined”.

I use Postman to send my requests.

Any idea about my problem?