forked from ringcentral/slate
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from Evocalize/ep-1101/order-api-docs
EP-1101 Order API docs
- Loading branch information
Showing
4 changed files
with
792 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
# Errors | ||
|
||
We return the appropriate HTTP Status code when we return an error. Additionally we do our best to provide a human readable error message to help you figure out what went wrong. | ||
We return the appropriate HTTP Status code when we return an error. Additionally we do our best to provide a human | ||
readable error message to help you figure out what went wrong. | ||
|
||
| Error Code | HTTP Status Code | Meaning | | ||
|-----------------------------------|------------------|--------------------------------------------------------------------| | ||
| EV_BAD_REQUEST_INVALID_FIELDS | 400 | Request is missing required fields or has failed validation check. | | ||
| EV_BAD_REQUEST_TOO_MANY_ITEMS | 400 | Batch request contains too many items. | | ||
| EV_BAD_REQUEST_MALFORMED | 400 | Malformed request, e.g. a type mismatch. | | ||
| EV_BAD_REQUEST_DUPLICATE | 400 | An object with a different id already exists. | | ||
| EV_OBJECT_NOT_FOUND | 404 | Unable to locate requested resource. | | ||
| EV_UNAUTHORIZED_INVALID_KEY | 401 | Provided Client Key Id is invalid. | | ||
| EV_UNAUTHORIZED_MISSING_HEADERS | 401 | Request is missing one of the required headers. | | ||
| EV_UNAUTHORIZED_INVALID_SIGNATURE | 401 | Signature provided in `X-Evocalize-Signature` is not valid. | | ||
| EV_UNAUTHORIZED_INVALID_SECRET | 401 | Secret provided in `X-Evocalize-Client-Key` is not valid. | | ||
| EV_UNAUTHORIZED_EXPIRED_REQUEST | 401 | Request timestamp is over 1 minute old. | | ||
| EV_INTERNAL_SERVER_ERROR | 500 | We had a problem with our server. Try again later. | | ||
| Error Code | HTTP Status Code | Meaning | | ||
|---------------------------------------|------------------|--------------------------------------------------------------------| | ||
| EV_BAD_REQUEST_INVALID_FIELDS | 400 | Request is missing required fields or has failed validation check. | | ||
| EV_BAD_REQUEST_TOO_MANY_ITEMS | 400 | Batch request contains too many items. | | ||
| EV_BAD_REQUEST_MALFORMED | 400 | Malformed request, e.g. a type mismatch. | | ||
| EV_BAD_REQUEST_DUPLICATE | 400 | An object with a different id already exists. | | ||
| EV_BAD_REQUEST_INVALID_BUDGET | 400 | The requested budget change is invalid. | | ||
| EV_BAD_REQUEST_INVALID_SCHEDULE | 400 | The requested schedule change is invalid. | | ||
| EV_BAD_REQUEST_INVALID_VARIABLE_VALUE | 400 | The requested variable value change is invalid. | | ||
| EV_OBJECT_NOT_EDITABLE_TEMPORARILY | 400 | The object cannot be edited at the moment. Please try again later. | | ||
| EV_OBJECT_NOT_FOUND | 404 | Unable to locate requested resource. | | ||
| EV_UNAUTHORIZED_INVALID_KEY | 401 | Provided Client Key Id is invalid. | | ||
| EV_UNAUTHORIZED_MISSING_HEADERS | 401 | Request is missing one of the required headers. | | ||
| EV_UNAUTHORIZED_INVALID_SIGNATURE | 401 | Signature provided in `X-Evocalize-Signature` is not valid. | | ||
| EV_UNAUTHORIZED_INVALID_SECRET | 401 | Secret provided in `X-Evocalize-Client-Key` is not valid. | | ||
| EV_UNAUTHORIZED_EXPIRED_REQUEST | 401 | Request timestamp is over 1 minute old. | | ||
| EV_INTERNAL_SERVER_ERROR | 500 | We had a problem with our server. Try again later. | |
Oops, something went wrong.