Error Codes - Precisely Data Integrity Suite

Data Integrity Suite APIs

Product
Data_Integrity
Spatial_Analytics
Data_Enrichment
geo_addressing_1
Services
Spatial Analytics
Data Enrichment
Geo Addressing
ft:title
Data Integrity Suite APIs
ft:locale
en-US
PublicationType
pt_developer
copyrightfirst
2023
copyrightlast
2026

APIs will return the following error codes in case of any errors:

Error 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-1008 Invalid request ID, maximum allowed length is 38 characters.
DIS-OAF-1011 Invalid Request.
DIS-OAF-1012 Collection with id {collection} not found.
DIS-OAF-1013 Specified column is not queryable: {column}.
DIS-OAF-1014 Invalid request parameters.
DIS-OAF-1015 Request parameter not supported: {param}.
DIS-OAF-1016 Specified limit must be greater than 0: {limit}

Error Responses

400 (Query Parameters are not allowed)
{
  "errors": [
    {
      "code": "DIS-OAF-1007",
      "detail": "Request parameter not supported: abc"
    }
  ]
}
401 (Unauthorized Access)
{
  "errors": [
    {
      "code": "DIS-1001",
      "detail": "Unauthorized."
    }
  ]
}
404 (Collection not found)
{
  "errors": [
    {
      "code": "DIS-OAF-1004",
      "detail": "Collection with id 'pbb_usa' not found."
    }
  ]
}
500 (Internal Server Error)
{
  "errors": [
    {
      "code": "DIS-1003",
      "detail": "Issue with internal services"
    }
  ]
}