Available to all organizations - Configure API access and webhooks for custom integrations, automated workflows, and real-time event notifications.
Overview
The Developer Tools section provides self-service configuration for API keys and webhooks, enabling you to:- API Keys: Authenticate with Tenzo’s Public API for pushing jobs and candidates
- Webhooks: Receive real-time interview results and event notifications from Tenzo
Generating an API Key
API keys allow you to authenticate with Tenzo’s Public API for pushing jobs and candidates programmatically. To get started:Name Your Key
Give your key a descriptive name to help you identify it later (e.g., “Production Integration” or “Development”)Optionally, set an expiration date for added security
Managing Your API Keys
Once created, you can view all your organization’s API keys, including:- Key name
- When it was created
- Last time it was used
- Total usage count
Configuring Webhooks
Webhooks allow Tenzo to send real-time notifications to your system when events occur, such as when a candidate completes an interview. All organizations can configure webhooks for their custom integrations and automated workflows.Setting Up a Webhook
Enter Your Webhook URL
Provide the URL where you want to receive webhook notifications from Tenzo
- Your URL must use HTTPS
- Your endpoint should accept POST requests with JSON payloads
- Example:
https://api.yourcompany.com/webhooks/tenzo-interviews
Set a Webhook Secret (Recommended)
Enter a webhook secret for signature verification. This allows you to verify that webhook requests are genuinely coming from Tenzo.
Activate Your Webhook
Toggle the Enable webhook delivery switch to start receiving webhook notifications
Managing Your Webhook
You can update your webhook URL, change your webhook secret, or deactivate webhooks at any time from the Webhooks page in Developer Tools. You can also delete your webhook configuration entirely if no longer needed.How Webhooks Work
Webhook Payload
When a candidate completes an interview, Tenzo will send a POST request with the following data:Signature Verification (Recommended)
If you provide a webhook secret, Tenzo will include an HMAC-SHA256 signature in theX-Webhook-Signature header. Verify this signature to ensure the request is from Tenzo:
Delivery & Retry Logic
- Tenzo will retry failed deliveries up to 3 times with exponential backoff (0s, 2s, 4s)
- Your endpoint should respond with a 200, 201, 202, or 204 status code to acknowledge receipt
- Requests timeout after 30 seconds per attempt
- Your endpoint should be idempotent to handle potential duplicate deliveries
For complete API reference and additional webhook details, see the Tenzo Public API Documentation.
Troubleshooting
API Key Not Working
API Key Not Working
Make sure:
- Your key hasn’t expired or been revoked
- You’re using the complete key including the
tenzo_pk_prefix - You’re including it in the Authorization header as shown in the API documentation
Not Receiving Webhooks
Not Receiving Webhooks
Verify that:
- Your webhook is marked as “Active”
- Your endpoint URL is correct and publicly accessible
- Your firewall isn’t blocking Tenzo’s requests
- Your SSL certificate is valid
Related Resources
- Tenzo Public API Documentation - Complete API reference and webhook details
- ATS Integrations - Overview of ATS integration options