Skip to main content
PUT
/
v2
/
banking
/
webhook-url
Set Webhook URL
curl --request PUT \
  --url https://api.business-os.de/v2/banking/webhook-url \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "webhook_url": "https://hook.eu1.make.com/abc123"
}
'
{
  "ok": true,
  "webhook_url": "https://hook.eu1.make.com/abc123"
}

Authorizations

x-api-key
string
header
required

Dein Business OS API Key. Erstelle einen unter app.business-os.de → API Keys.

Body

application/json
webhook_url
string<uri>
required

Deine Webhook-URL (z.B. Make.com Webhook). Auf null setzen zum Deaktivieren.

Example:

"https://hook.eu1.make.com/abc123"

Response

Webhook-URL aktualisiert

ok
boolean
Example:

true

webhook_url
string | null
Example:

"https://hook.eu1.make.com/abc123"