Error Handling
Identify and Handle Errors in the Task API
Error Codes and Reasons
Error Code | Reason |
---|---|
404 Not Found | The requested resource (Task / Runner / etc) does not exist in the system. |
50x Internal Server Error: | Server-side issues preventing successful request processing. |
400 Bad Request (implied): | Client sent an invalid or malformed request. |
403 Forbidden (implied): | Client lacks necessary permissions for the requested action. |
422 Validation Error | The request (inputs / etc) are malformed. |
429 Rate Limit Error | Client is exceeding allowed rate limit. |
4xx errors mean client should fix error before retrying, 5xx mean they should retry unchanged.