Adr Un Codes

List ADR UN codes

get
Authorizations
Query parameters
pageintegerOptional

A page number within the paginated result set.

searchstringOptional

Search by code or description, not case sensitive.

Example: gasoline
orderingstringOptional

Order results by code. Ascending with code and descending with -code.

Example: code
Responses
200
Get successful
application/json
get
GET /api/v4/adr-un-codes/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Accept: */*
200

Get successful

{
  "count": 1,
  "next": "text",
  "previous": "text",
  "results": [
    {
      "pk": 1,
      "code": 4,
      "category": "1",
      "description": {
        "fr": "PICRATE D'AMMONIUM sec ou humidifié avec moins de 10% (masse) d'eau",
        "en": "AMMONIUM PICRATE dry or wetted with less than 10% water, by mass",
        "nl": "AMMONIUMPIKRAAT, droog of bevochtigd met minder dan 10 massa-% water",
        "de": "AMMONIUMPIKRAT, trocken oder angefeuchtet mit weniger als 10 Masse-% Wasser"
      },
      "packaging_group": "III",
      "tunnel_restriction": "1 (B1000C)",
      "created": "2020-12-22T15:31:39.26167Z",
      "updated": "2020-12-22T15:31:39.26167Z"
    }
  ]
}

Read ADR UN code

get
Authorizations
Path parameters
pkintegerRequired

Dashdoc's internal id

Responses
200
Get successful
application/json
get
GET /api/v4/adr-un-codes/{pk}/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Accept: */*
200

Get successful

{
  "pk": 1,
  "code": 4,
  "category": "1",
  "description": {
    "fr": "PICRATE D'AMMONIUM sec ou humidifié avec moins de 10% (masse) d'eau",
    "en": "AMMONIUM PICRATE dry or wetted with less than 10% water, by mass",
    "nl": "AMMONIUMPIKRAAT, droog of bevochtigd met minder dan 10 massa-% water",
    "de": "AMMONIUMPIKRAT, trocken oder angefeuchtet mit weniger als 10 Masse-% Wasser"
  },
  "packaging_group": "III",
  "tunnel_restriction": "1 (B1000C)",
  "created": "2020-12-22T15:31:39.26167Z",
  "updated": "2020-12-22T15:31:39.26167Z"
}

Last updated

Was this helpful?