Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
* [1.3 Updating Resources via HTTP PUT](#13-updating-resources-via-http-put)
* [1.4 Cross Origin Resource Sharing (CORS)](#14-cross-origin-resource-sharing-cors)
* [1.5 Http Status Codes](#15-http-status-codes)
+ [1.5.1 Conflict on creation](#151-conflict-on-creation)
* [1.6 Error Response Body Format](#16-error-response-body-format)
* [1.7 DateTime Format](#17-datetime-format)
* [1.8 Additional Response and Request Object Properties](#18-additional-response-and-request-object-properties)
Expand Down Expand Up @@ -102,6 +103,10 @@ Generally, these response codes shall be used in the API:

`POST` and `PUT` requests do usually include the created/modified resource in the response body. Exceptions to this rule are described in the specific section for the resource.

### 1.5.1 Conflict on creation

For resource creation by `POST` with optional GUID specified, if the GUID already exists in the target system, status code `409 - Conflict` will be returned.

## 1.6 Error Response Body Format

All OpenCDE APIs have a specified error response body format [error.json](schemas/error.json).
Expand Down