APIs & Ingress¶
Use this category for HTTP-first workloads, inbound webhooks, and request authentication patterns at the edge. These recipes focus on shaping requests, securing entry points, and keeping API handlers simple.
Category map¶
flowchart LR
Client[Client / Webhook] -->|HTTP request| Auth{Auth check}
Auth -->|authorized| Fn[HTTP Function]
Auth -->|rejected| Deny[401 / 403]
Fn --> Logic[Handler logic]
Logic -->|response| Client
| Recipe | Trigger | Difficulty |
|---|---|---|
| Hello HTTP Minimal | HTTP | Beginner |
| HTTP Routing Query Body | HTTP | Beginner |
| HTTP Auth Levels | HTTP | Beginner |
| Webhook GitHub | HTTP webhook | Intermediate |
| EasyAuth Claims Extraction | HTTP + EasyAuth | Intermediate |
| JWT Bearer Validation | HTTP + bearer token | Intermediate |
| Multi-Tenant Auth | HTTP + identity claims | Advanced |
| BFF Facade API | HTTP | Intermediate |
| Full-Stack CRUD API | HTTP + DB | Advanced |