Menu

Expand
Rate this page:

Monitor Event Resource

Events are a platform feature that provides comprehensive event-logging and change-tracking for Twilio resources.

For example, Events log when you provision a phone number, change your account’s security settings, delete a recording, and so on. Events log virtually every action taken within Twilio, regardless of whether that action was taken through the API, by a user in the Twilio Console, or even by a Twilio employee.

The Events REST resource provides an API to retrieve this event-log. Each Event is like a log entry that captures:

  • The type of event.
  • The resource that the event relates to.
  • The actor that caused the event to happen.
  • The originating source for the event, including its IP address.
  • Any related event data (like what properties were changed).

Events work at any scale and across all Twilio products. They can be an instrumental tool in giving you full visibility into your Twilio applications. And the API can be used to retrieve your event log and push it into the log-aggregation or SIEM solution of your choice.

Event properties

Resource Properties in REST API format
account_sid
sid<AC> Not PII

The SID of the Account that created the Event resource.

actor_sid
sid<US> Not PII

The SID of the actor that caused the event, if available. Can be null.

actor_type
string Not PII

The type of actor that caused the event. Can be: user for a change made by a logged-in user in the Twilio Console, account for an event caused by an API request by an authenticating Account, twilio-admin for an event caused by a Twilio employee, and so on.

description
string Not PII

A description of the event. Can be null.

event_data
object Not PII

An object with additional data about the event. The contents depend on event_type. For example, event-types of the form RESOURCE.updated, this value contains a resource_properties dictionary that describes the previous and updated properties of the resource.

event_date
date_time<iso8601> Not PII

The date and time in GMT when the event was recorded specified in ISO 8601 format.

event_type
string Not PII

The event's type. Event-types are typically in the form: RESOURCE_TYPE.ACTION, where RESOURCE_TYPE is the type of resource that was affected and ACTION is what happened to it. For example, phone-number.created. For a full list of all event-types, see the Monitor Event Types.

resource_sid
sid Not PII

The SID of the resource that was affected.

resource_type
string Not PII

The type of resource that was affected. For a full list of all resource-types, see the Monitor Event Types.

sid
sid<AE> Not PII

The unique string that we created to identify the Event resource.

source
string Not PII

The originating system or interface that caused the event. Can be: web for events caused by user action in the Twilio Console, api for events caused by a request to our API, or twilio for events caused by an automated or internal Twilio system.

source_ip_address
string Not PII

The IP address of the source, if the source is outside the Twilio cloud. This value is null for events with source of twilio

url
url Not PII

The absolute URL of the resource that was affected. Can be null.

links
uri_map Not PII

The absolute URLs of related resources.

These fields make it easy to build Event notifications or list pages. For example, you can display human-readable strings like "On {event_date}, a {event_type} event was generated for resource {resource_type} via {source} by {actor_type} {actor_sid} from {source_ip_address}".

Sources, Actor-Types, and Actor-Sids

Sources, actor-types, and actor-sids are closely interrelated. They all help to indicate who or what caused the event, and from where. Here's a table describing the most common combinations you're likely to see:

source actor_type actor_sid description
api account AC123 The Account AC123 authenticated against the API and caused the event.
web user US456 The User whose sid is US456 was logged in the Twilio Console and caused the event. The User’s Sid can be seen in the Manager Users page of the Twilio Console.
twilio twilio-admin null A Twilio Administrator made the change through Twilio’s administration interface.

Fetch an Event resource

get
https://monitor.twilio.com/v1/Events/{Sid}
Parameters
Parameters in REST API format
sid
Path
get sid<AE> Not PII

The SID of the Event resource to fetch.

Example 1
Loading Code Sample...
        
        

        Fetch Event

        Read multiple Event resources

        get
        https://monitor.twilio.com/v1/Events

        Returns a list of Events in this account, sorted by event-date. This list includes paging information.

        By default, all Events are included. You can always filter your Events by event-date using the StartDate and EndDate parameters.

        In addition, you may filter by any one of the other fields. Filtering on more than one field in the same request is not supported and will result in a
        400 Bad Request error.

        Parameters
        Parameters in REST API format
        actor_sid
        Optional
        get sid<US> Not PII

        Only include events initiated by this Actor. Useful for auditing actions taken by specific users or API credentials.

        event_type
        Optional
        get string Not PII

        Only include events of this Event Type.

        resource_sid
        Optional
        get sid Not PII

        Only include events that refer to this resource. Useful for discovering the history of a specific resource.

        source_ip_address
        Optional
        get string Not PII

        Only include events that originated from this IP address. Useful for tracking suspicious activity originating from the API or the Twilio Console.

        start_date
        Optional
        get date_time<iso8601> Not PII

        Only include events that occurred on or after this date. Specify the date in GMT and ISO 8601 format.

        end_date
        Optional
        get date_time<iso8601> Not PII

        Only include events that occurred on or before this date. Specify the date in GMT and ISO 8601 format.

        Example 1
        Loading Code Sample...
              
              
              An example that filters for all events in March, 2015

              Filter by date

              An example that filters for all events in March, 2015
              Example 2
              Loading Code Sample...
                    
                    
                    Using the Events list resource and the `ResourceSid` filter to find out everything that happened a a specific phone-number

                    Filter for a phone number

                    Using the Events list resource and the `ResourceSid` filter to find out everything that happened a a specific phone-number
                    Example 3
                    Loading Code Sample...
                          
                          
                          Using the `SourceIpAddress` filter to track the activity of a particular IP address on a day in April

                          Filter for an IP address

                          Using the `SourceIpAddress` filter to track the activity of a particular IP address on a day in April
                          Example 4
                          Loading Code Sample...
                                
                                
                                `ActorSid`, `ResourceSid`, and `SourceIpAddress` may only be used one-at-a-time, so this request that uses both `ActorSid` and `ResourceSid` returns an HTTP 400 error

                                Only use one filter property at a time!

                                `ActorSid`, `ResourceSid`, and `SourceIpAddress` may only be used one-at-a-time, so this request that uses both `ActorSid` and `ResourceSid` returns an HTTP 400 error

                                Full List of All Supported Resource-Types and Event-Types

                                Events currently tracks the following resource types and associated event types. All of the event types are available via the console and API:

                                Resource Type Event Types
                                account account.created
                                account.updated
                                account.deleted
                                account-api-keys account-api-keys.created
                                account-api-keys.deleted
                                account-api-keys.updated
                                account-auth-token account-auth-token.deleted
                                account-auth-token.promoted
                                account-auth-token.updated
                                account-auth-token.created
                                account-auth-token.secondary-created
                                account-auth-token.secondary-deleted
                                account-credentials account-credentials.created
                                account-credentials.deleted
                                account-credentials.updated
                                account-keys account-keys.created
                                account-keys.deleted
                                account-keys.updated
                                application application.created
                                application.updated
                                application.deleted
                                authorized-connect-app authorized-connect-app.created
                                authorized-connect-app.deleted
                                authorized-connect-app.updated
                                bulkexports bulkexports.created
                                bulkexports.deleted
                                bulkexports.downloaded
                                bulkexports.updated
                                byoc-trunk byoc-trunk.updated
                                byoc-trunk.created
                                byoc-trunk.deleted
                                call call.deleted
                                call.status call.status.updated
                                caller-id caller-id.created
                                caller-id.updated
                                caller-id.deleted
                                config config.created
                                config.deleted
                                config.updated
                                connect-app connect-app.created
                                connect-app.updated
                                connect-app.deleted
                                connection-policy connection-policy.created
                                connection-policy.deleted
                                connection-policy.updated
                                copilot-application copilot-application.created
                                copilot-application.updated
                                copilot-application.deleted
                                copilot-number-pool copilot-number-pool.created
                                copilot-number-pool.deleted
                                copilot-number-pool.updated
                                data-access-policy data-access-policy.updated
                                data-policy data-policy.created
                                data-policy.updated
                                data-policy.deleted
                                interconnect-connection interconnect-connection.created
                                interconnect-connection.updated
                                interconnect-connection.deleted
                                invoice-settings invoice-settings.created
                                invoice-settings.deleted
                                invoice-settings.updated
                                ip-access-control-list ip-access-control-list.created
                                ip-access-control-list.deleted
                                ip-access-control-list.updated
                                ip-messaging.channel ip-messaging.channel.created
                                ip-messaging.channel.updated
                                ip-messaging.channel.deleted
                                ip-messaging.credential ip-messaging.credential.created
                                ip-messaging.credential.updated
                                ip-messaging.credential.deleted
                                ip-messaging.member ip-messaging.member.created
                                ip-messaging.member.updated
                                ip-messaging.member.deleted
                                ip-messaging.message ip-messaging.message.created
                                ip-messaging.message.deleted
                                ip-messaging.message.updated
                                ip-messaging.role ip-messaging.role.created
                                ip-messaging.role.updated
                                ip-messaging.role.deleted
                                ip-messaging.service ip-messaging.service.created
                                ip-messaging.service.updated
                                ip-messaging.service.deleted
                                ip-messaging.user ip-messaging.user.deleted
                                ip-messaging.user.created
                                ip-messaging.user.updated
                                ip-record ip-record.created
                                ip-record.updated
                                ip-record.deleted
                                message message.updated
                                message.deleted
                                message-body message-body.deleted
                                message-media message-media.deleted
                                message-media.deletedall
                                message-media.created
                                message-media.updated
                                messaging-settings messaging-settings.updated
                                payment payment.created
                                payment.deleted
                                payment.updated
                                payment-method payment-method.created
                                payment-method.updated
                                payment-method.deleted
                                payment-refund payment-refund.created
                                payment-refund.deleted
                                payment-refund.updated
                                phone-number phone-number.created
                                phone-number.updated
                                phone-number.deleted
                                recharge-trigger recharge-trigger.created
                                recharge-trigger.updated
                                recharge-trigger.deleted
                                recording recording.created
                                recording.updated
                                recording.deleted
                                recording.bulk-delete.created
                                recording.accessed
                                report report.cloned
                                report.updated
                                rtc-app-config rtc-app-config.created
                                rtc-app-config.updated
                                rtc-app-config.deleted
                                security-settings security-settings.created
                                security-settings.deleted
                                security-settings.updated
                                service
                                service-record service-record.created
                                service-record.updated
                                service-record.deleted
                                shortcode shortcode.created
                                shortcode.updated
                                shortcode.deleted
                                sipmanipulation sipmanipulation.created
                                sipmanipulation.updated
                                sipmanipulation.deleted
                                sip-credential-list sip-credential-list.created
                                sip-credential-list.updated
                                sip-credential-list.deleted
                                sip-domain sip-domain.created
                                sip-domain.updated
                                sip-domain.deleted
                                sip-ip-access-control-list sip-ip-access-control-list.created
                                sip-ip-access-control-list.updated
                                sip-ip-access-control-list.deleted
                                slapchop-api slapchop-api.created
                                slapchop-api.updated
                                slapchop-api.deleted
                                sms-geographic-permissions sms-geographic-permissions.created
                                sms-geographic-permissions.deleted
                                sms-geographic-permissions.updated
                                support-plan support-plan.updated
                                support-plan.created
                                support-plan.deleted
                                taskrouter-rate-limit taskrouter-rate-limit.updated
                                transcription transcription.created
                                transcription.deleted
                                transcription.accessed
                                trunk trunk.created
                                trunk.deleted
                                trunk.updated
                                usage-trigger usage-trigger.created
                                usage-trigger.updated
                                usage-trigger.deleted
                                user user.created
                                user.deleted
                                user.updated
                                user-invitation user-invitation.created
                                user-invitation.deleted
                                user-invitation.updated
                                user-password user-password.created
                                user-password.deleted
                                user-password.updated
                                user-session user-session.created
                                user-session.deleted
                                user-session.updated
                                verify-fraud-guard verify-fraud-guard.updated
                                verify-fraud-guard-mode verify-fraud-guard-mode.updated
                                voice-geographic-permissions voice-geographic-permissions.created
                                voice-geographic-permissions.deleted
                                voice-geographic-permissions.updated
                                voice-insights-account-flags voice-insights-account-flags.updated
                                voice-trace voice-trace.updated
                                wireless-sim wireless-sim.updated
                                wireless-sim.connection wireless-sim.connection.updated
                                Rate this page:

                                Need some help?

                                We all do sometimes; code is hard. Get help now from our support team, or lean on the wisdom of the crowd by visiting Twilio's Stack Overflow Collective or browsing the Twilio tag on Stack Overflow.

                                Loading Code Sample...
                                      
                                      
                                      

                                      Thank you for your feedback!

                                      Please select the reason(s) for your feedback. The additional information you provide helps us improve our documentation:

                                      Sending your feedback...
                                      🎉 Thank you for your feedback!
                                      Something went wrong. Please try again.

                                      Thanks for your feedback!

                                      thanks-feedback-gif