Error Messages
ScopeMaster uses conventional HTTP response codes to indicate the success or failure of an API request. In general: Codes in the2xx range indicate success. Codes in the 4xxrange indicate an error that failed given the information provided.
| HTTP Response | Meaning |
| 200 | OK |
| 202 | Accepted |
| 401 | Unauthorized, No valid API key provided |
| 400 | Bad / invalid request, perhaps missing a parameter or incorrect data. |
| 403 | Forbidden. The API key doesn't have permissions to perform the request. |
| 404 | Not found |
| 405 | Method not allowed |
Example error response:
{
"error": "data must include at least one field to update "
}