Django - Testing Django Applications
Given the following test code snippet, what will be the status code of the response if the endpoint exists and returns data successfully?
client = APIClient()
response = client.get('/api/items/')
print(response.status_code)