Each response to a request contains an HTTP status code. This API will return one of the following status codes:
| Response | Status Code | Description |
|---|---|---|
| OK | 200 | Successful Response |
| Invalid Request Parameters | 400 | Invalid information was encountered in the request. |
| Requested resource not found. | 404 | Requested resource does not exist. |
| Internal Server Error | 500 | An internal error occurred. |
400 Bad Request (Invalid Request Parameters)
<ServiceExceptionReport version="1.3.0">
<ServiceException code="MissingParameterValue">
Required parameter 'LAYERS' is missing in the request.
</ServiceException>
</ServiceExceptionReport>
404 Invalid Request (Requested resource not found)
<ServiceExceptionReport version="1.3.0">
<ServiceException code="LayerNotDefined">
The requested layer 'InvalidLayer' does not exist on this server.
</ServiceException>
</ServiceExceptionReport>
500 (Internal Server Error)
<ServiceExceptionReport version="1.3.0">
<ServiceException code="NoApplicableCode">
An internal server error occurred. Please try again later or contact support.
</ServiceException>
</ServiceExceptionReport>