|
32 | 32 |
|
33 | 33 |
|
34 | 34 | RESPONSE_CODES = { |
35 | | - 200: "OK", |
36 | | - 204: "Member deleted.", |
37 | | - 400: "The request was invalid or cannot be otherwise served. An " |
38 | | - "accompanying error message will explain further.", |
| 35 | + 200: "Successful request with body content.", |
| 36 | + 204: "Successful request without body content.", |
| 37 | + 400: "The request was invalid or cannot be otherwise served.", |
39 | 38 | 401: "Authentication credentials were missing or incorrect.", |
40 | 39 | 403: "The request is understood, but it has been refused or access is not " |
41 | 40 | "allowed.", |
|
47 | 46 | 409: "The request could not be processed because it conflicts with some " |
48 | 47 | "established rule of the system. For example, a person may not be " |
49 | 48 | "added to a room more than once.", |
| 49 | + 415: "The request was made to a resource without specifying a media type " |
| 50 | + "or used a media type that is not supported.", |
50 | 51 | 429: "Too many requests have been sent in a given amount of time and the " |
51 | 52 | "request has been rate limited. A Retry-After header should be " |
52 | 53 | "present that specifies how many seconds you need to wait before a " |
53 | 54 | "successful request can be made.", |
54 | | - 500: "Something went wrong on the server.", |
| 55 | + 500: "Something went wrong on the server. If the issue persists, feel " |
| 56 | + "free to contact the Webex Developer Support team " |
| 57 | + "(https://developer.webex.com/support).", |
55 | 58 | 502: "The server received an invalid response from an upstream server " |
56 | 59 | "while processing the request. Try again later.", |
57 | 60 | 503: "Server is overloaded with requests. Try again later." |
|
0 commit comments