Errors and troubleshooting
Sometimes problems happen with an API. Grouping these problems into codes called errors makes finding a fix much easier.
Hopefully you find your fix on this page.
Handling errors
All API methods return a response with an ok
boolean in the body to denotes
the success or failure of a response.
An erroring response might be...
{
"ok": false,
"error": {
"code": "",
}
}
Known errors
- An empty body on
POST