Class DeliveriesClient
- Namespace
- Auth0.ManagementApi.EventStreams
- Assembly
- Auth0.ManagementApi.dll
public class DeliveriesClient : IDeliveriesClient
- Inheritance
-
DeliveriesClient
- Implements
-
- Inherited Members
-
- Extension Methods
-
Methods
GetHistoryAsync(string, string, RequestOptions?, CancellationToken)
public WithRawResponseTask<GetEventStreamDeliveryHistoryResponseContent> GetHistoryAsync(string id, string eventId, RequestOptions? options = null, CancellationToken cancellationToken = default)
Parameters
id string
eventId string
options RequestOptions
cancellationToken CancellationToken
Returns
- WithRawResponseTask<GetEventStreamDeliveryHistoryResponseContent>
Examples
await client.EventStreams.Deliveries.GetHistoryAsync("id", "event_id");
ListAsync(string, ListEventStreamDeliveriesRequestParameters, RequestOptions?, CancellationToken)
public WithRawResponseTask<IEnumerable<EventStreamDelivery>> ListAsync(string id, ListEventStreamDeliveriesRequestParameters request, RequestOptions? options = null, CancellationToken cancellationToken = default)
Parameters
id string
request ListEventStreamDeliveriesRequestParameters
options RequestOptions
cancellationToken CancellationToken
Returns
- WithRawResponseTask<IEnumerable<EventStreamDelivery>>
Examples
await client.EventStreams.Deliveries.ListAsync(
"id",
new ListEventStreamDeliveriesRequestParameters
{
Statuses = "statuses",
EventTypes = "event_types",
DateFrom = "date_from",
DateTo = "date_to",
From = "from",
Take = 1,
}
);