HTTP status codes / 2xx — Success
201 Created
What it means
The request created a resource — the canonical answer to a successful POST. The Location header should point at the new resource.
What causes it
A create endpoint did its job.
How to fix it
Nothing. API authors: return 201 with a Location header rather than a bare 200 for creations.