Hi @Roshan Raj A K
As the error message says, application permissions can only be used to import third-party platform messages, not to send messages. To send messages, you must use delegated permissions.
I guess you are using the client credentials flow in Postman, which is a daemon-based authentication flow that will generate an application token and only supports application permissions, so you cannot use this authentication flow to send messages. If you want to send messages in Postman, you should request a user token using a delegated flow with user participation, such as auth code flow.
Graph Explorer uses the delegated flow by default, which requires your users to log in in the browser and generate a delegated user token, so you can send messages in Graph Explorer.
Hope this helps.
If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.