Skip to main content
POST
/
networks
/
webhooks
Create Webhook
curl --request POST \
  --url https://api.eflow.team/v1/networks/webhooks \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "url": "<string>",
  "status": "<string>",
  "event_types": [
    "<string>"
  ]
}
'
{}

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Body

application/json
url
string

The webhook endpoint URL.

status
string

Webhook status (active/paused).

event_types
string[]

Event types that should trigger this webhook.

Response

200 - application/json

OK

The created webhook configuration.