Coverage for docs_src / openapi_webhooks / tutorial001_py310.py: 100%
13 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-02-12 18:15 +0000
1from datetime import datetime 1abcd
3from fastapi import FastAPI 1abcd
4from pydantic import BaseModel 1abcd
6app = FastAPI() 1abcd
9class Subscription(BaseModel): 1abcd
10 username: str 1abcd
11 monthly_fee: float 1abcd
12 start_date: datetime 1abcd
15@app.webhooks.post("new-subscription") 1aebfcdg
16def new_subscription(body: Subscription): 1abcd
17 """
18 When a new user subscribes to your service we'll send you a POST request with this
19 data to the URL that you register for the event `new-subscription` in the dashboard.
20 """
23@app.get("/users/") 1abcd
24def read_users(): 1abcd
25 return ["Rick", "Morty"] 1hij