Rest API - Webhooks and Events
Given this webhook test code snippet, what will be the output?
import requests
response = requests.post('https://example.com/webhook', json={'event': 'test'})
print(response.status_code)