Product Codes Reference

When you create an order, the product field selects which report you want. The other item fields control language, format, delivery speed, and whether to trigger a fresh investigation. This page is the quick reference for all of them.

Product codes

CodeReportRetrieved from
2100KYB Report/a4a/3.0/api/report/kyb/code/{code}
2200Structure Report/a4a/3.0/api/report/structure/code/{code}
2300Credit Report/a4a/3.0/api/report/credit/code/{code}
2700Enhanced Structure Report-
2800Comprehensive Report-

Order item fields

FieldTypeRequiredAllowed valuesDefault
codestringYesThe company's ICG ID-
referencestringYesAny value you choose-
languagestringYesENEN
productstringYes2100, 2200, 2300, 2700, 2800-
formatstringYesJSONJSON
speedstringYesNormal, Urgent, Super FlashNormal
freshinvestigationintegerYes0, 10
commentsstringNoAny value-

Delivery speed

speed applies to fresh investigations. It determines how quickly Infocredit Group will compile new data on the company.

SpeedStructureEnhanced StructureComprehensiveCredit
Normal1–3 working days2-4 working days1-3 working daysUp to 5 working days
UrgentNot applicableNot applicableNot applicableUp to 4 working days
Super FlashNot applicableNot applicableNot applicableUp to 3 working days

The Structure Report supports Normal only. Urgent and Super Flash apply to the Credit Report. A KYB report cannot be ordered fresh.

Fresh investigation

ValueMeaning
0Return the data currently on file. Fast, and the default
1Investigate the company afresh before producing the report. Subject to speed

Which values each report accepts:

Reportfreshinvestigation: 0freshinvestigation: 1
KYB (2100)Only optionNot available
Structure (2200)AvailableAvailable (Normal only)
Credit (2300)AvailableAvailable (Normal, Urgent, Super Flash)
Enhanced Structure (2700)Not availableOnly option
Comprehensive (2800)COMP-FRESHCOMP-FRESH

Use Report Availability to check last_updated before deciding. If the data on file is recent enough for your purpose, freshinvestigation: 0 returns it without the wait.

📘

Fresh investigation is what makes an order cancellable. Only orders with fresh investigation enabled can be cancelled, and only while their status is Received. See Orders Workflow.

Full example

A Structure Report on Infocredit Group, from data on file:

{
  "reference": "123456",
  "items": [
    {
      "code": "CY00001234406861",
      "reference": "123456",
      "language": "EN",
      "product": "2200",
      "format": "JSON",
      "speed": "Normal",
      "freshinvestigation": 0,
      "comments": ""
    }
  ]
}

The same company, but with a freshly investigated Credit Report on the fastest turnaround:

{
  "reference": "123457",
  "items": [
    {
      "code": "CY00001234406861",
      "reference": "123457",
      "language": "EN",
      "product": "2300",
      "format": "JSON",
      "speed": "Super Flash",
      "freshinvestigation": 1,
      "comments": "Rush — credit committee Thursday"
    }
  ]
}

Did this page help you?