Status Codes
When the user calls any of the REST resources, the Response header returns one of the standard HTTP status codes defined in the following table.
Table - Standard HTTP Status Codes
| HTTP Status Codes | Message | Details |
|---|---|---|
| 200 | Success | Success with response body. Most GET requests will receive this response. If there are no customised success response messages configured, then a blank body message will be sent back along with the status 200. |
| 201 | Created | Success with response body. Used with POST URIs where a resource is created in the database. ID of the entity created should be returned. |
| 404 | Not Found | Request resource not found. |