Fetch a specific Event Type

GET /v1/Types/{Type}

Event Types available

Fetch a specific Event Type.

Path parameters

  • Type string Required

    A string that uniquely identifies this Event Type.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • date_created string(date-time) | null

      The date this Event Type was created.

    • date_updated string(date-time) | null

      The date this Event Type was updated.

    • description string | null

      Event Type description.

    • schema_id string | null

      The Schema identifier for this Event Type.

    • type string | null

      The Event Type identifier.

    • url string(uri) | null

      The URL of this resource.

GET /v1/Types/{Type}
curl \
 -X GET https://events.twilio.com/v1/Types/{Type} \
 --user "username:password"
Response examples (200)
{
  "date_created": "2023-05-04T09:42:00+00:00",
  "date_updated": "2023-05-04T09:42:00+00:00",
  "description": "string",
  "links": {},
  "schema_id": "string",
  "type": "string",
  "url": "https://example.com"
}