Responses and response formats

Last updated: 2025-03-20Contributors
Edit this page

Since REST APIs are built on top of the HTTP protocol, they reuse some concepts and common HTTP status codes to inform a client about the result of API method execution. These responses fall into three main categories:

  • Success. The client gets an HTTP response with a 2XX or 3XX status code and optionally, depending on the request, some payload in the body.
  • Client error. The server returns an HTTP response with one of the 4xx status codes. In most cases, the response body contains more detailed information about the reason for the issue. Such error usually means that the client does something wrong, unexpected or disallowed.
  • Server error. The server returns an HTTP response with one of the 5xx status codes. In most cases, the response body contains more detailed information about the reason for the issue. This kind of error is returned in case of unexpected issues on the server side.

HTTP 2xx – Success

Most of the HTTP 2xx status codes (200, 201, 202, 204, 206) indicate that the action requested by the client was received, understood, accepted, and processed successfully.

HTTP 207 Multi-status code can be returned for some API requests, which means that the response consists of multiple parts returned as a "multipart/mixed" body (see also RFC 2046). In this case, the first part of this multipart response contains JSON array with real status codes corresponding to each part of a response (see Batch Requests section below).

HTTP 3xx – Redirection

This class of status code indicates the client must take additional action to complete the request. Many of these status codes are used in redirection.

For HTTP 301, HTTP 302, HTTP 303, HTTP 307, and HTTP 308 client must support automatic redirection to a new URL returned in the Location response header as specified in RFC 2616

If the Location header is not returned, the client should repeat the request to the same URL.

HTTP 304 can be returned only for some API requests that allow specifying conditional headers If-None-Match, If-Modified-Since (see also RFC 7232). Such status indicates that the resource is not modified and the client doesn't need to update the locally cached version of a resource.

API clients have to follow the following rules when processing HTTP 3xx responses: * HTTP 301, HTTP 302, HTTP 303 — request to target URL specified in Location header must be performed with HEAD method (if original method was HEAD) or GET method (if the original method was GET, PUT, POST or DELETE) * HTTP 307, HTTP 308 — request to target URL specified in Location header must be performed with the same HTTP method as the original request * HTTP 304 – no additional requests to the server should be performed.

HTTP 4xx – Client Error

The 4xx status codes indicate that there was an error with the API request that can and should be fixed by the client. In most cases (except HTTP 429), requests should not be retried in unchanged form. RingCentral API can return HTTP 400, HTTP 403, HTTP 405, HTTP 406, HTTP 408, HTTP 409, HTTP 415 and other status codes.

HTTP 429 – Too Many Requests

This means that the client exceeded some quota or rate limit defined for all or for certain types of API requests. The client may retry the original request after getting this HTTP code, but not earlier than the number of seconds returned in the Retry-After header (see RFC 6585).

Additional information about throttling limits may be returned in X-RateLimit-XXX response headers. Learn more in our rate limit documentation.

HTTP 401 – Unauthorized

It usually means that the access token provided by a client is invalid or expired. The client must request a new access token and repeat the request with it. Depending on the used OAuth grant type and application settings, the client may be provided with a refresh token that should be used in this situation to get a new access token. If the refresh token was not provided, the client has to repeat the original authentication request to get a fresh access token.

HTTP 404 – Not Found

This status code may mean that the particular URL requested is invalid or that the resource with the given ID (indicated as a part of the URL) does not exist or is not accessible to the authorized user. Such an error can usually be ignored if returned as a result of a DELETE request, which means that the resource was already deleted on the server (it may happen due to different server-side retention policies or concurrent requests from other API clients).

HTTP 5xx – Server Error

The server failed to fulfill an apparently valid request. The server is aware that it has encountered an error or is otherwise incapable of performing the request. There can be very different reasons for the 50x status returned. The app should retry the request up to 3 times with exponential backoff intervals, and the developer may contact RingCentral Developer Support if the problem persists.

HTTP 503 – Service Unavailable

The server is currently unavailable (because it is overloaded or down for maintenance). Generally, this is a temporary state. In some cases, this status indicates that server cannot handle just this particular type of requests while others can be processed. The client may retry the original request after getting this HTTP code not earlier than in the number of seconds returned in the Retry-After response header (see RFC 7231).

Other 5xx

The client should not repeat the request. RingCentral Developer Support should be informed about the problem.