Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Tip
titleNewest version

V2 is The newest version with a more robust backend and more REST-like API

...

This is the documentation of the REST-API for DI Address Helper V2. It offers methods to lookup addresses in the Nordic countries.

NOTE: Most clients can use our supplied frontend, you only need this if you want to create your own frontend-implementation.

Table of Contents
maxLevel3


Setup

Make sure you have the following information at hand before proceeding

apiKey

The key provided when signing up for the service. Please contact us if you don't know your API key. Needed for all requests, see the examples.

(star) Remember to contact us to get a production-ready quota, and not just the testing-quota (or you might get an error message when your quota is used for the month)

customerSystem(Only relevant when for coverage-checks / distribution-dates): Please contact us if you don't know your customer system.
product(Only relevant when for coverage-checks / distribution-dates): Please contact us if you don't know your product.

...

Expand
titleDetails


Request

Path Parameters

The customerSystem and productName is defined when signing up for the service. Please contact us if you don't know your customer system.

fromDate and toDate follows the format "YYYY-MM-DD"

Query Parameters
ParameterTypeExampleDescription
apiKeystringmyapikeyPlease contact us if you don't know your API key.

Response

Status
colourGreen
titleSTATUS 200
 - application/JSON

Code Block
languagejs
{
    "product": String,				// Product Name
    "distributions": List<String> 	// Strings with dates "YYYY-MM-DD"
}

Note: The value 2017-12-13 means the night from 12.-13. December

...



Examples

Example 1: Get Street Collections

...