Recieve real-time updates from Altur directly to your backend or CRM.
200 OK
status code to confirm successful receipt. If the request fails or times out, Altur retries the delivery up to 5 times with an exponential backoff strategy.
on_call_end
: Triggered at the end of a call, this webhook sends detailed information about the call along with basic information about the AI agent and the end user.X-Altur-Signature
header for every request.
X-Altur-Signature
header.Content-Type
: application/json
X-Altur-Signature
: Base64-encoded HMAC SHA-256 hash of the compact JSON payload200 OK
status code, the following retry policy is applied:
/webhooks/altur/on-call-end
. Ensure the endpoint is publicly accessible and configured to accept POST requests with a Content-Type
of application/json
.
X-Altur-Signature
header to verify the authenticity of the request. This involves:
200 OK
status code to acknowledge successful receipt. Aim to respond within 10 seconds to avoid timeouts or unnecessary retries by Altur.
200 OK
and handle the task asynchronously.400
for invalid requests or 500
for server errors).X-Altur-Signature
(case-sensitive in some frameworks)hmac.compare_digest()
crypto.timingSafeEqual()
hash_equals()