Twilio Twilio Events V1
Twilio Events is a Twilio API for accessing and subscribing to event data from Twilio services.
- Base URL:
https://events.twilio.com - Auth:
basic(pass your key via theapiKeyinput)
Operations
fetchschema— GET /v1/Schemas/{Id} — Fetch a specific schema with its nested versions.listschemaversion— GET /v1/Schemas/{Id}/Versions — Retrieve a paginated list of versions of the schema.fetchschemaversion— GET /v1/Schemas/{Id}/Versions/{SchemaVersion} — Fetch a specific schema and version.listsink— GET /v1/Sinks — Retrieve a paginated list of Sinks belonging to the account used to make the reqfetchsink— GET /v1/Sinks/{Sid} — Fetch a specific Sink.listsubscription— GET /v1/Subscriptions — Retrieve a paginated list of Subscriptions belonging to the account used to make
Inputs
apiKey— your twilio-twilio-events-v1 API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: fetchschema
apiKey: <your key>
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
apiKey |
string | yes | — | DEPRECATED — bind an API Key credential to the task with credentialName instead. A key pasted here is stored in the workflow definition in clear and appears in every export of it. Still honoured for workflows built before the change. |
operation |
string | yes | — | One of: fetchschema, listschemaversion, fetchschemaversion, listsink, fetchsink, listsubscription |
Id |
string | no | — | Path parameter Id (required by some operations). |
SchemaVersion |
string | no | — | Path parameter SchemaVersion (required by some operations). |
Sid |
string | no | — | Path parameter Sid (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |