Below are the common error codes for Tiles API:
| Code | Description |
|---|---|
| DIS-1001 | Invalid token. |
| DIS-1002 | Not Authorized to access this API |
| DIS-1003 | Issue with internal services. |
| DIS-1004 | Workspace ID is missing from Bearer Token. |
| DIS-1005 | Rate limit exceeded. |
| DIS-1006 | Invalid Key secret, unauthorized. |
| DIS-1007 | API quota has been permanently exhausted. No further requests are allowed. |
| DIS-1008 | Invalid request ID (max 38 characters). |
| DIS-1009 | Access blocked due to too many failed attempts. Please try again after sometime. |
| DIS-1010 | Workspace has been expired. |
Error response examples
{
"errors": [
{
"status": "INVALID_REQUEST",
"errorMessage": "Required parameter 'LAYERS' is missing in the request. (DIS-1010)"
}
]
}{
"errors": [
{
"status": "INVALID_TOKEN",
"errorMessage": "Unauthorized (DIS-1001)"
}
]
}{
"errors": [
{
"status": "UNAUTHORIZED",
"errorMessage": "Not authorized to access this API (DIS-1002)"
}
]
}{
"errors": [
{
"status": "TOO_MANY_REQUESTS",
"errorMessage": "Rate limit exceeded (DIS-1005)"
}
]
}{
"errors": [
{
"status": "INTERNAL_ERROR",
"errorMessage": "Issue with internal services. Please try again after sometime (DIS-1003)"
}
]
}{
"errors": [
{
"status": "SERVICE_UNAVAILABLE",
"errorMessage": "Issue with internal services. Please try again after sometime (DIS-1003)"
}
]
}