...
Code | Meaning | Returned When |
---|---|---|
201 | Created | A new instance of the resource was created successfully within /{resources_as_a_plural_noun}/schema. |
400 | Bad Request | The resource could not be created because the data sent in the entity body of the request was bad, as determined by the service. |
403 | Not Authorized | The resource could not be created because the client submitting the request was not authorized to create new resources in this container. |
500 | Internal Server Error | A service error prevented the resource from being created. |
...
Code | Meaning | Returned When |
---|---|---|
200 | OK | A new instance of the resource was created updated successfully within at /{resources_as_a_plural_noun}/schema{resource_identifier}. |
400 | Bad Request | The resource could not be updated because the data sent in the entity body of the request was bad, as determined by the service. |
403 | Not Authorized | The resource could not be updated because the client submitting the request was not authorized to update resources in this container. |
404 | Not Found | The resource at /{resources_as_a_plural_noun}/{resource_identifier} does not exist. |
500 | Internal Server Error | A service error prevented the resource from being updated. |
...