Skip to content
OpenRelay is in early access, and the /v1 API is stable. New capabilities ship in the changelog.
Webhooks

Create a webhook (returns the signing secret once)

POST
/v1/orgs/{orgId}/webhooks/create
AuthorizationBearer <token>

OpenRelay API key. Send it as Authorization: Bearer vl_….

In: header

Path Parameters

orgId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/v1/orgs/string/webhooks/create" \  -H "Content-Type: application/json" \  -d '{    "name": "deploy-events",    "url": "https://example.com/hooks/openrelay",    "events": [      "vm.running",      "vm.stopped",      "cluster.degraded"    ]  }'
{
  "id": "string",
  "name": "string",
  "url": "string",
  "secretPrefix": "string",
  "events": [
    "string"
  ],
  "enabled": true,
  "createdAt": "string",
  "secret": "string"
}
{
  "error": "string",
  "code": "string"
}
{
  "error": "string",
  "code": "string"
}

Command line

The orl CLI wraps this endpoint:

orl webhooks create --name <name> --url <url>