Django - Testing Django Applications
What status code should you expect when sending a POST request with missing required fields to a Django REST Framework API endpoint?
client = APIClient()
response = client.post('/api/products/', data={'price': 100})