Skip to main content

Events

Returns a list of Events from your Twilio account.

Sync Type: Incremental

Requirements

Before you connect Monad to Twilio, you need an Account SID and Auth token. Follow https://www.twilio.com/en-us/blog/better-twilio-authentication-csharp-twilio-api-keys to retrieve your credentials.

Details

Monad uses the StartDate filter on the API to determine which events to display. This field is updated every time a request to get events is successful with the last time a request to get events was initiated. If this was the first time requesting for data, a full sync of the data is performed. Monad also provides a way to specify the Replication Start Date, which would determine the initial value for this filter.

Configuration

The following configuration defines the input parameters. Each field's specifications, such as type, requirements, and descriptions, are detailed below.

Settings

SettingTypeRequiredDescription
Actor SIDstringNoOnly includes events initiated by this Actor. Useful for auditing actions taken by specific users or API credentials.
Replication Start TimestringNoThe date to start fetching data from. If not specified, no past records will be fetched.
Resource SIDstringNoOnly include events that refer to this resource. Useful for discovering the history of a specific resource.
Event TypestringNoOnly includes events of a specific event type: https://www.twilio.com/docs/usage/monitor-events#event-types.

Secrets

SecretTypeRequiredDescription
Account SidstringYesThe unique identifier for your Twilio account.
Twilio Auth TokenstringYesThe secret authentication token associated with your Twilio account.

Sample Record

{
"account_sid": "AC9e57c89e0bd49fb15218005acae4c496",
"actor_sid": "USe979d3f2edbb5dbd3fbfa6f9062f844b",
"actor_type": "twilio-admin",
"description": "Security settings modified",
"event_date": "2025-08-11T23:47:00.691412Z",
"event_type": "user.created",
"resource_sid": "SM1234567890abcdef1234567890abcdef",
"resource_type": "user",
"sid": "AE07d41a1e17b5e1ec34529649641173e5",
"url": "https://monitor.twilio.com/v1/Events/AEfedcba0987654321fedcba0987654321",
"source": "twilio",
"source_ip_address": "125.39.6.118",
"event_data": {
"resource_properties": {
"roles": {
"updated": "Viewer",
"previous": ""
},
"email": {
"updated": "admin@company.com",
"previous": "olduser@example.com"
}
}
},
"links": {
"actor": "https://api.twilio.com/2010-04-01/Accounts/AC1234567890abcdef1234567890abcdef/Users/USe979d3f2edbb5dbd3fbfa6f9062f844b",
"resource": "https://api.twilio.com/2010-04-01/Accounts/AC9e57c89e0bd49fb15218005acae4c496/OutgoingCallerIds/SM1234567890abcdef1234567890abcdef"
}
}