Hi Community!
We’re happy to announce a valuable improvement: the new Email Received Webhook
!
This webhook lets customers subscribe to notifications whenever a new email is received inside a card in their pipes.
Key Details:
- Trigger: `card.email_received`
- Card Info: ID, title, and pipe ID
- Phase Info: Phase ID and name
-
Email Info: Sender, recipients, subject, and body
Usage:
You can subscribe to this webhook to receive real-time updates about new emails in their cards, enhancing their workflow and ensuring timely communication.
The article listing our webhooks and our developers page were updated!
Find an example of the payload in the thread below.
{
"data": {
"action": "card.email_received",
"card": {
"id": xxxx,
"title": "Draft",
"pipe_id": "qgZwd1Xl"
},
"on_phase": {
"id": xxx,
"name": "Reviews"
},
"email": {
"id": xxx,
"from": "robert@pipefy.com",
"from_name": "robert",
"main_to": "pipe2@pipefy.com",
"to":
"pipe2@pipefy.com",
"pipe2+ulutma0w@pipefy.com"
],
"cc": ],
"bcc": i],
"subject": "subject here",
"body": "This is a test",
"clean_text": "This is a test",
"pipe_id": x,
"card_id": xxxx,
"sent_via_automation": false
}
}
}
Note: For now, the new webhook is not available for Outlook integration.
Let’s test this new and provide us your feedback.
Moving fowards making our platform even more robust!