Listen to Events from Portant via Webhooks
Learn how to send data from Portant to your own apps
To send data from Portant to a Webhook, add the "Send events to Webhook" Workflow Block to your workflow.
By adding a "Send Webhook Events" block to your workflow you can capture events from your automations in Portant in your own app.
Webhook events are sent on a "per source item" basis. A source item is singular package of data from the workflow's source, for example in Google Sheets a single row is a single source item. For an automation that contains multiple source items Portant will send multiple webhook requests for each item.
Payload Schema
All webhook events sent from Portant will follow the same top level schema. The data
payload will differ based on the type of event as specified by the event_type
property.
Schema Example
Types of Events
Currently Portant has four types of events that your app can be notified about via webhooks. These events are dependent on the configuration of you workflow. For example you must have an email block to receive "Emails Created" events. The types of events are as follows.
Documents Created
The automation has created new documents such as Google Docs or Google Slides files and/or PDFs.
Workflow Configuration The must workflow contain a template block (Google Docs or Google Slides).
Schema
Mimetypes
Example Payload
Emails Created
The automation has created and sent emails.
Workflow Configuration The must workflow contain an email block (Gmail). This does not include signature requests.
Schema
Example Payload
Signatures Requested
The automation has sent out signature requests.
Workflow Configuration The must workflow contain a signature request block.
Schema
Example Payload
Signatures Completed
All signature requests within this automation have been completed
Workflow Configuration The must workflow contain a signature request block.
Schema
The schema for this event is the same as the "Signatures Requested". The recipients.status
field will be "COMPLETED" for all recipients.
Example Payload
Last updated