Skip to main content
GET
https://{tenantDomain}/api/v2
/
event-streams
C#
using Auth0.ManagementApi;
using System.Threading.Tasks;

public partial class Examples
{
    public async Task Example() {
        var client = new ManagementClient(
            token: "<token>"
        );

        await client.EventStreams.ListAsync(
            new ListEventStreamsRequestParameters {
                From = "from",
                Take = 1
            }
        );
    }

}
{
  "eventStreams": [
    {
      "id": "<string>",
      "name": "<string>",
      "subscriptions": [
        {
          "event_type": "<string>"
        }
      ],
      "destination": {
        "type": "webhook",
        "configuration": {
          "webhook_endpoint": "<string>",
          "webhook_authorization": {
            "method": "basic",
            "username": "<string>"
          }
        }
      },
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "next": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

from
string

Optional Id from which to start selection.

take
integer

Number of results per page. Defaults to 50.

Required range: 1 <= x <= 100

Response

Event streams successfully retrieved.

eventStreams
object[]
next
string

Opaque identifier for use with the from query parameter for the next page of results.