Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 808 Bytes

invalid-api-status-body.md

File metadata and controls

32 lines (21 loc) · 808 Bytes

Invalid API Route Status/Body Response

Why This Error Occurred

In one of your API routes a 204 or 304 status code was used as well as sending a response body.

This is invalid as a 204 or 304 status code dictates no response body should be present.

Possible Ways to Fix It

Send an empty body when using a 204 or 304 status code or use a different status code while sending a response body.

Before

export default function handler(req, res) {
  res.status(204).send('invalid body')
}

After

export default function handler(req, res) {
  res.status(204).send()
}

Useful Links