> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# New Message Sent To Authenticated User

Triggers a workflow on every new message in the signed in user's mailbox

**Endpoint**: `https://graph.microsoft.com/v1.0/me/messages`

<Note>
  Workflows with this trigger check for new events **every 5 minutes by default**. You can adjust this interval in the Trigger settings.
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                                                                                                                                                   |
  | --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Filter    | Specify an OData `$filter` query option to refine the retrieved messages.<br /><br />Example: `from/emailAddress/address eq 'someuser@example.com'`<br /><br />**Note** : Please **DO NOT** filter by the `receivedDateTime` field, as Blink uses it in its polling mechanic. |
  | Select    | A comma-separated list of specific `message` properties to include in the response. When omitted, all properties are returned.                                                                                                                                                |
</div>

## Sample Event

```json theme={"dark"}
{
   "@odata.etag": "W/\"CQAAABYAAABeZj0Db5m3SKRoaZO74erferfwe"",
   "id": "AAMkADg2YTcwNGZmLWY3ODQtNDI4ZS1iNGE3LTRmN2ZiMWQ2MWNjZgBGAAAAAABsrDg7lBaxSdg-KFMfbhsRBwBeZj0Db5m3SKRoaZO74wLrAAAAAAEMAABeZj0Db5m3SKRoaZO74ktrAAID-FAIAAA=",
   "receivedDateTime": "2026-03-30T11:55:48Z",
   "sender": {
     "emailAddress": {
       "address": "mail@blinkops.com",
       "name": "Email At Blinkops"
     }
   },
   "subject": "Vulnerability"
}
```
