# Endpoint by ID This endpoint returns a single endpoint and its configuration by ID. Endpoint: GET /webhooks/endpoint/{id} Version: 1.5 Security: ApiKeyAuth, BasicAuth ## Path parameters: - `id` (string, required) The Identifier of the subscription, active or not, that you wish to delete. Example: "4d4d835b-c188-4120-87f9-1208c001e170" ## 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