Below are the common error codes for Bulk
Spatial 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 provided, maximum allowed length is 38 characters. |
| DIS-1009 | Access blocked due to too many failed attempts. Please try again after sometime. |
| DIS-1010 | Workspace has been expired. |
| DIS-SFB-1001 | Input file name should not be empty |
| DIS-SFB-1002 | tableName cannot be null or blank |
| DIS-SFB-1003 | Attributes cannot be empty. Provide * for all columns |
| DIS-SFB-1004 | Invalid File Id |
| DIS-SFB-1005 | File Id cannot be empty |
| DIS-SFB-1006 | Workflow ID not found |
| DIS-SFB-1007 | Unable to retrieve workflow status |
| DIS-SFB-1008 | Invalid argument provided in the request |
| DIS-SFB-1009 | Proportional calculation is only allowed with 'intersects' spatial operation |
| DIS-SFB-1010 | Aggregation columns cannot be empty |
| DIS-SFB-1011 | Limit must be at least 1 |
| DIS-SFB-1012 | Limit cannot exceed 1000 |
| DIS-SFB-1013 | Missing mandatory headers like 'InputId' or 'Geometry' in the input file |
| DIS-SFB-1014 | Duplicate headers found in the uploaded input file |
| DIS-SFB-1015 | Invalid Request Body |
| DIS-SFB-1016 | Unsupported operation type |
| DIS-SFB-1017 | Request payload should not be empty |
| DIS-SFB-1018 | withinDistance should not be empty |
| DIS-SFB-1019 | operation should not be empty |
| DIS-SFB-1020 | Invalid value for field. |
| DIS-SFB-1021 | Max features must be between 1 and 1000. |
Error response examples
Status: 400 (Invalid Request):
{
"errors": [
{
"status": "INVALID_REQUEST",
"errorMessage": "Invalid File Id. (DIS-SFB-1004)"
}
]
}Status: 401 (Invalid Token):
{
"errors": [
{
"status": "INVALID_TOKEN",
"errorMessage": "Unauthorized (DIS-1001)"
}
]
}Status: 403 (Forbidden):
{
"errors": [
{
"status": "UNAUTHORIZED",
"errorMessage": "Not authorized to access this API (DIS-1002)"
}
]
}Status: 429 (Too many requests):
{
"errors": [
{
"status": "TOO_MANY_REQUESTS",
"errorMessage": "Rate limit exceeded (DIS-1005)"
}
]
}Status: 500 (Internal Server Error):
{
"errors": [
{
"status": "INTERNAL_ERROR",
"errorMessage": "Issue with internal services. Please try again after sometime (DIS-1003)"
}
]
}Status: 503 (Service Unavailable):
{
"errors": [
{
"status": "SERVICE_UNAVAILABLE",
"errorMessage": "Issue with internal services. Please try again after sometime (DIS-1003)"
}
]
}