POST request to your webhook URL when a call ends.
Setup
- Go to workspace.superu.ai/dashboard/developer
- Click the Webhooks tab
- Enter your server URL in the Call Ended endpoint field (e.g.
https://your-server.com/webhook) - Click Verify & Save — SuperU will send a test request to confirm your endpoint is reachable
- Your server must respond with
200 OKand echo back the receivedcall_uuid:
Payload
| Field | Type | Description |
|---|---|---|
call_uuid | string | Unique identifier of the call that ended |
Response
Your endpoint must return a200 HTTP status code. Any non-2xx response is treated as a failure.
Example
Python
cURL

