Fetch event

GET /v1/Events/{Sid}

Debugger events

Path parameters

  • Sid string Required

    The SID of the Event resource to fetch.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • account_sid string | null

      The SID of the Account that created the resource

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

    • actor_sid string | null

      The SID of the actor that caused the event, if available

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^US[0-9a-fA-F]{32}$.

    • actor_type string | null

      The type of actor that caused the event

    • description string | null

      A description of the event

    • A JSON string that represents an object with additional data about the event

    • event_date string(date-time) | null

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

    • event_type string | null

      The event's type

    • resource_sid string | null

      The SID of the resource that was affected

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^[a-zA-Z]{2}[0-9a-fA-F]{32}$.

    • resource_type string | null

      The type of resource that was affected

    • sid string | null

      The unique string that identifies the resource

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AE[0-9a-fA-F]{32}$.

    • source string | null

      The originating system or interface that caused the event

    • source_ip_address string | null

      The IP address of the source

    • url string(uri) | null

      The absolute URL of the resource that was affected

GET /v1/Events/{Sid}
curl \
 -X GET https://monitor.twilio.com/v1/Events/{Sid} \
 --user "username:password"
Response examples (200)
{
  "account_sid": "string",
  "actor_sid": "string",
  "actor_type": "string",
  "description": "string",
  "event_date": "2023-05-04T09:42:00+00:00",
  "event_type": "string",
  "links": {},
  "resource_sid": "string",
  "resource_type": "string",
  "sid": "string",
  "source": "string",
  "source_ip_address": "string",
  "url": "https://example.com"
}