# HTTP success status codes

In the responses, codes in the `2xx` are status codes for successful requests.

| Status code      | Description                                                               |
| ---------------- | ------------------------------------------------------------------------- |
| `200 OK`         | The request succeeded (*Default*)                                         |
| `201 Created`    | A `POST` method successfully created a resource.                          |
| `202 Accepted`   | The server accepted the request and will execute it later.                |
| `204 No Content` | The server successfully executed the method but returns no response body. |
