@@ -127,6 +127,7 @@ Method | Description | Response Status Code
127
127
PATCH | Create/Modify the resource with JSON Merge Patch | ` 200-OK ` , ` 201-Created `
128
128
PUT | Create/Replace the _ whole_ resource | ` 200-OK ` , ` 201-Created `
129
129
POST | Create new resource (ID set by service) | ` 201-Created ` with URL of created resource
130
+ POST | Action | ` 200-OK ` , ` 204-No Content `
130
131
GET | Read (i.e. list) a resource collection | ` 200-OK `
131
132
GET | Read the resource | ` 200-OK `
132
133
DELETE | Remove the resource | ` 204-No Content ` \; avoid ` 404-Not Found `
@@ -297,13 +298,13 @@ There are 2 kinds of errors:
297
298
** ErrorResponse** : Object
298
299
299
300
Property | Type | Required | Description
300
- -------- | ---- | -------- | -----------
301
+ -------- | ---- | : ------: | -----------
301
302
` error ` | ErrorDetail | ✔ | The error object.
302
303
303
304
** ErrorDetail** : Object
304
305
305
306
Property | Type | Required | Description
306
- -------- | ---- | -------- | -----------
307
+ -------- | ---- | : ------: | -----------
307
308
` code ` | String | ✔ | One of a server-defined set of error codes.
308
309
` message ` | String | ✔ | A human-readable representation of the error.
309
310
` target ` | String | | The target of the error.
@@ -313,7 +314,7 @@ Property | Type | Required | Description
313
314
** InnerError** : Object
314
315
315
316
Property | Type | Required | Description
316
- -------- | ---- | -------- | -----------
317
+ -------- | ---- | : ------: | -----------
317
318
` code ` | String | | A more specific error code than was provided by the containing error.
318
319
` innererror ` | InnerError | | An object containing more specific information than the current object about the error.
319
320
0 commit comments