MailGet

Summary

  • Retrieves a single email by id. Ideal for opening a detailed view with subject, sender/recipients, flags, and links.

Graph Endpoint

  • GET /me/messages/{id}

Parameters

Required

  • id: string — The message ID.

Optional

  • select: string[] — Limit the fields you want to receive (e.g., ['id','subject','from','toRecipients','receivedDateTime','isRead','webLink']). If omitted, a sensible default is used.

Usage (app.businessFunction)

Minimal

app.businessFunction({
  functionName: 'MicrosoftGraph',
  methodName: 'Mail',
  operation: 'Get',
  parameters: {
    id: 'AAMkAGI2N...' // message id
  }
})

With select

Response

  • On success returns the email item under item.

  • The exact fields depend on your select parameters. If select is omitted, a sensible default set of fields is returned.

Last updated

Was this helpful?