# List Endpoints This endpoint returns an array (List) of all endpoints (your endpoints) and the event types subscribed. Endpoint: GET /webhooks/endpoint/list Version: 1.5 Security: ApiKeyAuth, BasicAuth ## Query parameters: - `before` (string,null) The cursor value returned by Tenovos to retrieve the previous page of results. If the before parameter is used, the after parameter cannot be used. Example: "196100ac-4ee" - `after` (string,null) The cursor value returned by Tenovos to retrieve the next page of results. If the after parameter is used, the before parameter cannot be used. Example: "16969100ac-4ef" ## Header parameters: - `content-type` (string) Example: "application/json" - `Authorization` (string) Example: "Bearer " ## Response 200 fields (application/json): - `id` (string) Identifier of the event - `description` (string) You must provide a description for the subscription. Example: "Notify System X for All Assets Created" - `disabled` (boolean) Indicates whether or not the endpoint subscription is disabled or not - `url` (string) A webhook target is usually an open and public url that listens for webhook notification messages. Tenovos signs every webhook message to ensure the security and authenticity of all webhooks being sent. In addition, Tenovos supports HTTP Basic Authentication and using an authentication token in headers. Choose one of these authentication methods as part of your target payload. Example: "https://yourendpoint.com" - `eventTypes` (array) One of the available [event types](https://api.tenovos.com/developer-portal/webhooks/event-types/) listed Example: ["asset.created","asset.updated","asset.downloaded","asset.deleted"] - `rateLimit` (integer) Example: 200 ## Response 400 fields ## Response 401 fields ## Response 403 fields ## Response 503 fields