Internal site. Jolli authentication required to view.
Skip to Content
Special-CharsdefaultPOST /webhooks

Register webhook with literal true/false/null and a backtick

POST/webhooks

Try it

POST/webhooks
Request body (application/json)

The example payload below contains the strings true, false, null, and a literal backtick. Switch language tabs in the code-sample switcher and verify Python emits "true" not True, Go emits an interpreted string (with ``` escaped) not a backtick-delimited raw string.

Authentication

No authentication required.

Request body

Content type: application/json

  • object
    • eventsstring[]
    • notestring
    • enabledboolean

Response

201Created
Request
curl -X POST 'https://api.example.com/v1/webhooks' \ -H 'Content-Type: application/json' \ -d '{ "events": [ "true", "false", "null" ], "note": "this contains a `backtick` value", "enabled": true }'