Search code examples
strapi

Is it possible to get logged admin email in Strapi?


can i get SuperAdmin email from my api? I mean this email: enter image description here


Solution

  • I would recommend you to use the strapi plugin

      await strapi.plugins['users-permissions'].services.user.find();
    

    instead of

    await strapi.query("strapi::user").find({})