๐ BCE Lambda Documentation
Comprehensive guides, API references, and tutorials to help you build, deploy, and manage serverless applications.
๐ Get Started with Quickstart๏ฟฝ Getting Started
๐ Core Concepts
Understanding Serverless
Serverless architecture allows you to run code without managing infrastructure. With BCE Lambda, you pay only for the compute time you consumeโthereโs no charge when your code isn't running.
Key advantages include automatic scaling, reduced operational complexity, and cost efficiency.
Architecture Diagram
Visualizing the serverless workflow: Function โ API Gateway โ Database
โ๏ธ API Reference
REST API Overview
BCE Lambda provides a fully managed REST API for function management, deployment, and monitoring. All endpoints require authentication via API keys.
GET /api/v1/functions
Authorization: Bearer
Returns a list of all available functions with metadata.
๐ View Function ReferenceWebhook Integration
Set up webhooks to trigger functions automatically based on events like HTTP requests, database changes, or scheduled intervals.
{
"endpoint": "https://api.bcelambda.com/webhook/my-function",
"secret": "your-webhook-secret"
}
Use this endpoint to securely invoke your function via HTTP POST.
๐ Learn about Webhooks