Skip to main content
PUT
/
v1
/
notification
/
webhook
Create notification webhook
curl --request PUT \
  --url https://api.wirespeed.co/v1/notification/webhook \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "url": "<string>",
  "enabled": true,
  "notificationTypes": []
}
'
{
  "secret": "<string>",
  "webhook": {
    "id": "<string>",
    "teamId": "<string>",
    "name": "<string>",
    "url": "<string>",
    "enabled": true,
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "notificationTypes": []
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.wirespeed.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required

Human-readable label for this webhook destination

url
string
required

URL to POST notification payloads to

enabled
boolean
default:true
notificationTypes
enum<string>[] | null

Notification types that trigger this webhook. Null/omitted means all types.

Available options:
NEW_CASE_ESCALATION,
NEW_SECURITY_EVENT,
NEW_CRITICAL_DEFECT,
ACCOUNT_SUMMARY,
INTEGRATION_HEALTH

Response

secret
string
required

The generated signing secret (shown once)

webhook
object
required