curl --request GET \
--url https://partner-api.ochy-prod.com/webhook \
--header 'Authorization: Bearer <token>'import requests
url = "https://partner-api.ochy-prod.com/webhook"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://partner-api.ochy-prod.com/webhook', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Get partner webhook configuration
Returns the stored webhook URL, enabled flag, signature metadata, and updated_at for
the authenticated partner. If no configuration has been saved yet, the response body is
empty ({}).
Use this to verify settings before relying on PUT /webhook
or starting analyses with notify_via_webhook=true.
curl --request GET \
--url https://partner-api.ochy-prod.com/webhook \
--header 'Authorization: Bearer <token>'import requests
url = "https://partner-api.ochy-prod.com/webhook"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://partner-api.ochy-prod.com/webhook', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Authorizations
Recommended. Pass your API key as a Bearer token in the Authorization header: Authorization: Bearer YOUR_API_KEY.
Response
Current webhook configuration (or empty object if none exists).
Returned by GET /webhook and PUT /webhook. When no webhook has been stored yet,
GET /webhook returns an empty object. The full signing secret is only present in
responses that generated or rotated it.
Registered webhook URL.
"https://client.example.com/webhooks/ochy"
Whether webhook delivery is enabled for this partner.
true
When the configuration was last updated (ISO 8601 UTC).
"2026-03-23T10:45:00Z"
Webhook signing configuration. The secret field is returned only when generated or rotated.
Show child attributes
Show child attributes