Media Error Codes (SubSystem 775)
SubSystem | ErrorCode | Http Code | Name | Details and Troubleshooting | Console Message |
---|---|---|---|---|---|
775 | 10 | 400 | UpstreamInvalidResponse | Invalid response from the upstream service. Check the response for additional details. | message: String? = null |
775 | 11 | 400 | UpstreamInvalidErrorMessage | Exception while parsing the Error which is coming from the upstream service. Check the response for additional details. | message: String? = null |
775 | 400 | 400 | BadRequest | Invalid data found in the request. Check the response for additional details. | message: String? = null |
775 | 422 | 400 | UnprocessableEntity | Invalid data found in the request. Check the response for additional details. | message: String? = null |
775 | 400 | 400 | ValidationFieldLength | Invalid data found in the request. Check the response for additional details. | "[Bad Request] Validation error for body application/json: provided string should have size <= $maxLength for field $fieldName" |
775 | 401 | 401 | Unauthorized | Unauthorized request. Check the response for additional details. | message: String? = "Unauthorized" |
775 | 403 | 403 | Forbidden | Forbidden access request. Check the response for additional details. | message: String? = "Forbidden" |
775 | 404 | 404 | NotFound | Resource not found. Check that the called URL is correct. | message: String? = "Not Found" |
775 | 405 | 405 | MethodNotAllowed | Method not allowed. Check that the called URL is correct. | message: String? = "Method Not Allowed" |
775 | 500 | 500 | InternalError | Internal server error occured. Check the response for additional details. | message: String? = null |
775 | 501 | 501 | NotImplementedError | The called endpoint is not yet implemented. Check that the installed service version is correct. | message: String? = "Not Implemented" |
775 | 503 | 503 | ServiceUnavailableError | Service is unavailable to response. Check the response for additional details | message: String? = "Service Unavailable" |
775 | 1103 | 404 | ImageNotFound | Image is not found in the database. Please be sure that image is actually created | "imageId $imageId on tenant $tenant not found" |
775 | 4001 | 400 | MissingRequiredField | Missing required field in Json object. Ensure all the required fields available in the Json object, check the response for missing field | "Missing required $location" |
775 | 4002 | 400 | MalformedField | Malformed field in Json object. Check the response for additional details. | "Malformed $locationAndReason" |
775 | status.code() | status | GenericHttpError | Generic http error | message ?: status.reasonPhrase() |
Additional Details and Troubleshooting
Error Codes between 1000-1099
These error codes are reserved for OIDC library
which is basically related with authentication of tenants.
If you see these errors, try to understand it from OIDC-Client library documentation. If not, contact with smartscreen
team. There is a possibility of involvement of IDP in the problem-solving session.
Error Codes between 4001-4002
These error codes related with JSON parsing
. Try to understand what is exactly failing from the response details.
If not, contact with smartscreen team.