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
| Code | Report | Retrieved from |
|---|---|---|
2100 | KYB Report | /a4a/3.0/api/report/kyb/code/{code} |
2200 | Structure Report | /a4a/3.0/api/report/structure/code/{code} |
2300 | Credit Report | /a4a/3.0/api/report/credit/code/{code} |
2700 | Enhanced Structure Report | - |
2800 | Comprehensive Report | - |
Order item fields
| Field | Type | Required | Allowed values | Default |
|---|---|---|---|---|
code | string | Yes | The company's ICG ID | - |
reference | string | Yes | Any value you choose | - |
language | string | Yes | EN | EN |
product | string | Yes | 2100, 2200, 2300, 2700, 2800 | - |
format | string | Yes | JSON | JSON |
speed | string | Yes | Normal, Urgent, Super Flash | Normal |
freshinvestigation | integer | Yes | 0, 1 | 0 |
comments | string | No | Any value | - |
Delivery speed
speed applies to fresh investigations. It determines how quickly Infocredit Group will compile new data on the company.
| Speed | Structure | Enhanced Structure | Comprehensive | Credit |
|---|---|---|---|---|
Normal | 1–3 working days | 2-4 working days | 1-3 working days | Up to 5 working days |
Urgent | Not applicable | Not applicable | Not applicable | Up to 4 working days |
Super Flash | Not applicable | Not applicable | Not applicable | Up 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
| Value | Meaning |
|---|---|
0 | Return the data currently on file. Fast, and the default |
1 | Investigate the company afresh before producing the report. Subject to speed |
Which values each report accepts:
| Report | freshinvestigation: 0 | freshinvestigation: 1 |
|---|---|---|
KYB (2100) | Only option | Not available |
Structure (2200) | Available | Available (Normal only) |
Credit (2300) | Available | Available (Normal, Urgent, Super Flash) |
Enhanced Structure (2700) | Not available | Only option |
Comprehensive (2800) | COMP-FRESH | COMP-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 isReceived. 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"
}
]
}Updated 2 days ago
