Skip to main content
POST
/
webhooks
/
remove
Remove Webhook
curl --request POST \
  --url https://access.utgl.io/v1/webhooks/remove \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "webhookId": "6a3176fe-7715-4fe0-a548-034912d7f800"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "My Webhook",
  "url": "https://your-webhook.server/utgl-access-webhooks",
  "status": "created",
  "events": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
webhookId
string<uuid>
required

Webhook ID

Example:

"6a3176fe-7715-4fe0-a548-034912d7f800"

Response

200 - application/json

Webhook removed

id
string<uuid>

Webhook ID

name
string

Name of webhook

Example:

"My Webhook"

url
string

URL of webhook endpoint

Example:

"https://your-webhook.server/utgl-access-webhooks"

status
enum<string>
  • created webhook has been recently created, pending initial health check
  • healthy webhook is active and there are no delivery issues
  • unhealthy webhook is in degraded state and deliveries are being retried
  • error webhook is in error state and deliveries are suspended
  • removed webhook has been removed
Available options:
created,
healthy,
unhealthy,
error,
removed
events
string[]

List of subscribed events