Optional configuration: ConfigurationRetrieves the details of an Event.
Get an Event
The id of the Tilled Account (usually starting with the prefix `acct_`) that the request is performed on behalf of.
Optional options: RawAxiosRequestConfig<any> = {}Override http request option.
Returns a list of Events from the past 30 days. The Events are sorted with the most recently created appearing first.
List all Events
The id of the Tilled Account (usually starting with the prefix `acct_`) that the request is performed on behalf of.
Optional delivery_status: ListEventsDeliveryStatusFilters events by their webhook delivery status. - `succeeded` — all endpoints received a 2xx response - `failed` — at least one endpoint exhausted retries without a successful delivery - `pending` — event is still queued for delivery (fan-out not yet complete) - `undelivered` — no delivery was attempted because the endpoint was `inactive` or `disabled` When omitted, all events are returned regardless of delivery status.
Optional created_at_gte: stringMinimum `created_at` value to filter by (inclusive). Default is 30 days in the past.
Optional created_at_lte: stringMaximum `created_at` value to filter by (inclusive). Default is current date.
Optional types: ListEventsTypes[]An array of up to 20 strings containing specific event names. The list will be filtered to include only events with a matching event property.
Optional object_id: stringId of related resource. The list will be filtered to include events that are related to the resource with this id.
Optional include_connected_accounts: booleanWhether or not to include the results from any connected accounts.
Optional offset: numberThe (zero-based) offset of the first item in the collection to return.
Optional limit: numberThe maximum number of entries to return. If the value exceeds the maximum, then the maximum value will be used.
Optional options: RawAxiosRequestConfig<any> = {}Override http request option.
Generated using TypeDoc
EventsApi - axios parameter creator
Export