HTTP Reference

HTTP 201 Created

The request succeeded and created a new resource.

Common Causes

  • Successful POST request that persisted a new record.
  • Resource creation endpoint returning the new object ID.
  • Asynchronous create flow acknowledged immediately.

Debugging Notes

  • Verify Location header points to the new resource URL when applicable.
  • Ensure idempotency strategy for repeated create requests.

Example Response

{
  "status": 201,
  "message": "created",
  "id": "item_123"
}

Related Tools