This webhook is triggered each time a new video recording is received in your Birdie workspace. It allows you to automate workflows, store references, or trigger actions when a video becomes available.
Webhook Delivery
Method:POST
Protocol:HTTPS only
Content-Type:application/json
Birdie sends a signed POST request to the endpoint URL you register. The JSON body contains data about the received video.
Get Started
Head to your Birdie workspace settings page and enable .
You must validate your URL endpoint by returning a before saving.
From there copy your Singing Secret to setup .
Signature Verification
To ensure the webhook is authentic, each request includes a Signature HTTP header. This is a HMAC-SHA256 hash of the JSON payload using your Signing Secret.
Signature: <HMAC_SHA256_SIGNATURE>
Hash generation formula:
HMAC_SHA256(<payload>, your_signing_secret)
Verifying Signature - Code Examples
Hash the Json Payload with your Signing Secret, and make sure it match the Signature Header.
[HttpPost("webhook")]
public IActionResult Webhook([FromBody] JObject body) {
var secret = Encoding.UTF8.GetBytes("your_secret");
var payload = Request.Body;
using var reader = new StreamReader(payload);
var bodyStr = reader.ReadToEnd();
var hmac = new HMACSHA256(secret);
var hash = hmac.ComputeHash(Encoding.UTF8.GetBytes(bodyStr));
var expected = BitConverter.ToString(hash).Replace("-", "").ToLower();
var signature = Request.Headers["Signature"].ToString();
if (expected != signature) return Unauthorized("Invalid signature");
return Ok("ok");
}
For additional security layer you can also verify the IP address from Birdie servers:
If you want to go this way, allow calls coming from 18.189.92.93 and 3.20.198.186
Webhook Response Requirements
Your webhook handler must:
Return an HTTP status code between 200 and 299 to confirm successful delivery.
Avoid redirects, errors, or timeouts — otherwise the attempt is marked as failed.
Retry Policy & Backoff
Birdie uses exponential backoff for failed webhook deliveries. Each webhook will be retried up to 3 times, as follows:
1st attempt: immediately
2nd attempt: 10 seconds later
3rd attempt: 100 seconds later
If all attempts fail, the webhook is marked as permanently failed.
Auto-Disabling Policy
To prevent loops or spam, Birdie disables your webhook endpoint automatically after 10 consecutive failures. You will be able to re-enable the webhook in your Birdie dashboard.
Need Help?
You can use any webhook testing service of your choice to test and introspect Birdie calls, for example
If needed, email us at we’ll help you resolve it quickly.