Skip to main content
POST
/
webhooks
Create webhook
curl --request POST \
  --url https://nvidia.casebender.com/api/v1/webhooks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "url": "<string>",
  "events": [
    "<string>"
  ],
  "description": "<string>",
  "method": "POST",
  "authType": "<string>",
  "authConfig": {},
  "headers": {},
  "filters": {},
  "retryDelayMs": 1000,
  "timeoutMs": 30000,
  "maxRetries": 3,
  "tags": [],
  "environment": "production"
}
'

Authorizations

Authorization
string
header
required

API key authentication. Use format: Bearer cbr_live_your_key

Body

application/json
name
string
required
url
string<uri>
required
events
string[]
required
description
string
method
enum<string>
default:POST
Available options:
POST,
PUT,
PATCH
authType
string
authConfig
object
headers
object
filters
object
retryDelayMs
number
default:1000
timeoutMs
number
default:30000
maxRetries
number
default:3
tags
string[]
environment
string
default:production

Response

200

Default Response