IActionable’s API utilizes a handful of HTTP Status codes to indicate responses. Anything other than a 200 can be considered an error of some kind. These will also have a message which explains the problem in more detail.
| Status Code | |
|---|---|
| 200 | Success |
| 400 | Bad Request – The parameters specified do not make sense in the context of the api call being made. |
| 401 | Unauthorized – This may be returned when accessing part of the API that requires authorization and that authorization was not supplied or was incorrect. |
| 500 | Internal Server Error – Something went wrong within IActionable itself. |



