Skip to main content
PUT
/
webhooks
/
endpoint
Configure webhook endpoint
curl --request PUT \
  --url https://api.rendobar.com/webhooks/endpoint \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "active": true,
  "rotateSecret": true
}
'
{
  "data": {
    "id": "<string>",
    "url": "<string>",
    "signingSecret": "<string>",
    "active": true,
    "createdAt": 123,
    "updatedAt": 123
  }
}

Body

application/json
url
string<uri>
required

Webhook endpoint URL (HTTPS only)

active
boolean
default:true

Whether the endpoint is active

rotateSecret
boolean
default:true

Generate a new signing secret. Set false to keep the existing secret (e.g. when only toggling active).

Response

Webhook endpoint configured. Signing secret shown in plaintext (only time it's visible).

data
object
required