Error Codes
If you encountered some error in your API and SDK calls, chances are there is an "error code" in the response message. Have a look at the error codes to know more and head to the bottom of the page to handle errors programmatically:
API Errors
Handling Errors
We recommend that you programmatically handle errors. Here is an example to ensure that you can get the error codes in your console/environment
In the code snippet below the line if (!response.ok) { throw new Error(response.status); }
provides the error codes in your console/environment.
Last updated