March 2023
Intermediate to advanced
321 pages
4h 52m
English
In the previous chapter, you learned how FastAPI handles the processing of path and query parameters included in the URL of the client’s GET request. In this chapter, you will see how you can include required data as the body part of the client’s HTTP request.
POST method
Body parameters
Data model with Pydantic
Model configuration
Pydantic fields
Validation
Nested models
A web browser software can send the request only through the GET method. We know ...