Get a list of available reports for a given company.

Reports

Get a list of available reports for a given company. Products are divided into reports which will be generated immediately after the order (online reports) or are prepared after the purchase (offline reports) and get delivered within five days (express) or seven days (normal).

Request
As an identifier, the company WIN-number has to be sent.
Response
The response is a map with an array containing products online/offline reports and online/offline Legal documents.

Legal Documents

Legal documents will be prepared after the purchase and get delivered within five days. As an identifier, the company WIN-number has to be sent. The document is supplied as a PDF after your order has been processed.

Report format
Legal documents are available only as PDF.

Response
The response is a map with an array containing products online/offline reports and online/offline Legal documents.

Example:

$.get('https://api.worldbox.ch/v1/product/reports/ch00001636?lang=' + lang+'&currency='+currency, function(data) {
    console.log(data);
});

Response:

{
    company: {
            name: "Worldbox",
            country:"Switzerland",
            win: "CH0000163067"
        },
    reports: [
        {
            countrycode: "CH",
            price: 49,
            name: "Credit Report online",
            language: "EN",
            currency: "EUR",
            format: "PDF,XML",
            date: "2014-05-05T22:00:00Z",
            productcode:"DLF150", 
            type: "online"
        },
       {
            countrycode: "CH",
            price: 35,
            name: "Company Report online",
            language: "EN",
            currency: "EUR",
            format: "PDF,XML",
            date: "2013-06-06T22:00:00Z",
            productcode:"DLF130", 
            type: "online"
        },
        {  
            countrycode: "CH",
            price: 69,
            name: "Credit\/Investigation report express (offline)",
            language: "EN",
            currency: "EUR",
            format: "PDF,XML",
            date: "",
            productcode:"REO120", 
            type: "offline"
        },
        ...
    ]
}

Note: the currency will be set by default according to your billing currency in the account settings!

Language
Authorization
Basic
base64
:
Click Try It! to start a request and see the response here!