Skip to main content
POST
/
v3
/
webhooks
Add a Webhook
curl --request POST \
  --url http://localhost/api/v3/webhooks \
  --header 'Content-Type: application/json' \
  --data '
{
  "trigger": "<string>",
  "url": "<string>",
  "namespace": "<string>",
  "is_active": true,
  "retry_daily": true,
  "retry_hourly": true,
  "queue": "high",
  "condition": [
    "<string>"
  ],
  "extra_data_template": "<string>"
}
'
{
  "data": {
    "id": 123,
    "trigger": "<string>",
    "url": "<string>",
    "namespace": "<string>",
    "user_id": 123,
    "is_active": true,
    "retry_daily": true,
    "retry_hourly": true,
    "created_at": "<string>",
    "updated_at": "<string>",
    "queue": "<string>",
    "condition": [
      "<unknown>"
    ],
    "extra_data_template": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.omneo.io/llms.txt

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

Body

application/json
trigger
string
required
url
string<uri>
required
namespace
string
required
is_active
boolean | null
retry_daily
boolean | null
retry_hourly
boolean | null
queue
enum<string> | null
Available options:
high,
default,
low
condition
string[] | null
extra_data_template
string | null

Response

Webhook

data
Webhook · object
required