Update Endpoint

This endpoint updates a single endpoint and its configuration by ID.

SecurityApiKeyAuth or BasicAuth
Request
path Parameters
id
required
string <uuid> = 36 characters

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 <token>
Request Body schema: application/json
description
string [ 5 .. 100 ] characters

You must provide a description for the subscription.

eventTypes
Array of arrays

One of the available event types listed

url
string <url>

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.

rateLimit
integer
Responses
204

Successful Request. Endpoint Updated Successfully.

400

One or more required parameters are missing or invalid.

401

Authentication failed (unauthorized).

403

Forbidden. You do not have permissions to perform this action, or your connection information is not correct.

503

The server is too busy to handle the request.

patch/webhooks/endpoint/{id}
Request samples
application/json
{
  • "description": "Notify System X for All Assets Created",
  • "eventTypes": [
    ],
  • "rateLimit": 200
}