Skip to content
For LLMsView as Markdown·

Microsoft Outlook

Send, receive, and manage emails and contacts via Microsoft Graph.

DetailValue
CategoryProductivity
Base URLhttps://graph.microsoft.com/v1.0
AuthenticationOAuth2
Endpoints6
Connector keymicrosoft-outlook

Using Microsoft Outlook in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Microsoft Outlook from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /me/messagesList email messages
POST /me/sendMailSend an email
GET /me/messages/{messageId}Get an email message
DELETE /me/messages/{messageId}Delete an email
GET /me/contactsList contacts
GET /me/mailFoldersList mail folders

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /me/messages

List email messages

DetailValue
Operation IDproductivity.listMessages
MethodGET
Path/me/messages

Parameters

NameLocationTypeRequired
$topqueryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Microsoft Outlook connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.listMessages.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Microsoft Outlook API reference.

POST /me/sendMail

Send an email

DetailValue
Operation IDproductivity.sendMail
MethodPOST
Path/me/sendMail

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Microsoft Outlook connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.sendMail.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Microsoft Outlook API reference.

GET /me/messages/{messageId}

Get an email message

DetailValue
Operation IDproductivity.getMessage
MethodGET
Path/me/messages/{messageId}

Parameters

NameLocationTypeRequired
messageIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Microsoft Outlook connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.getMessage.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Microsoft Outlook API reference.

DELETE /me/messages/{messageId}

Delete an email

DetailValue
Operation IDproductivity.deleteMessage
MethodDELETE
Path/me/messages/{messageId}

Parameters

NameLocationTypeRequired
messageIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Microsoft Outlook connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.deleteMessage.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Microsoft Outlook API reference.

GET /me/contacts

List contacts

DetailValue
Operation IDproductivity.listContacts
MethodGET
Path/me/contacts

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Microsoft Outlook connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.listContacts.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Microsoft Outlook API reference.

GET /me/mailFolders

List mail folders

DetailValue
Operation IDproductivity.listFolders
MethodGET
Path/me/mailFolders

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Microsoft Outlook connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.listFolders.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Microsoft Outlook API reference.