Loads

List all loads of a given waste form

get
Authorizations
Path parameters
form-uidstringRequired

Unique identifier of the waste form

Query parameters
pageintegerOptional

A page number within the paginated result set.

Responses
200
Get successful
application/json
get
GET /api/v4/wam/forms/{form-uid}/loads/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Accept: */*
200

Get successful

{
  "count": 1,
  "next": "text",
  "previous": "text",
  "results": [
    {
      "uid": "123e4567-e89b-12d3-a456-426614174000",
      "description": "Waste description",
      "weight": 12500,
      "quantity": 10,
      "eural_code": "02 01 01*",
      "physical_properties": "Flammable and reactive waste",
      "chemical_composition": "Radioactive Materials",
      "packaging_type": "Barrels",
      "treatment_type": "Regeneration of acids or bases.",
      "treatment_codes": [
        "R1",
        "D13"
      ]
    }
  ]
}

Create a waste load

post
Authorizations
Path parameters
form-uidstringRequired

Unique identifier of the waste form

Body
descriptionstringOptional

Description of the waste load

Example: Waste description
weightnumber · floatOptional

Weight of the waste in kilograms

Example: 12500
quantitynumber · doubleOptional

Quantity of packages. This is required for hazardous waste.

Example: 10
eural_codestringOptional

The Eural code of the waste. If this eural code indicates a hazardous waste, it should be suffixed with a *.

Example: 02 01 01
physical_propertiesstringOptional

Physical properties of the waste load. This is required for hazardous waste.

Example: Flammable and reactive waste
chemical_compositionstringOptional

Chemical composition of the waste load. This is required for hazardous waste.

Example: Radioactive Materials
packaging_typestringOptional

Packaging type of the waste load. This is required for hazardous waste.

Example: Barrels
treatment_typestringOptional

Treatment type of the waste load. This is required for hazardous waste.

Example: Regeneration of acids or bases.
Responses
201
Create successful
application/json
post
POST /api/v4/wam/forms/{form-uid}/loads/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 297

{
  "description": "Waste description",
  "weight": 12500,
  "quantity": 10,
  "eural_code": "02 01 01",
  "physical_properties": "Flammable and reactive waste",
  "chemical_composition": "Radioactive Materials",
  "packaging_type": "Barrels",
  "treatment_type": "Regeneration of acids or bases.",
  "treatment_codes": [
    "R1",
    "D13"
  ]
}
201

Create successful

{
  "uid": "123e4567-e89b-12d3-a456-426614174000",
  "description": "Waste description",
  "weight": 12500,
  "quantity": 10,
  "eural_code": "02 01 01*",
  "physical_properties": "Flammable and reactive waste",
  "chemical_composition": "Radioactive Materials",
  "packaging_type": "Barrels",
  "treatment_type": "Regeneration of acids or bases.",
  "treatment_codes": [
    "R1",
    "D13"
  ]
}

Delete a load of a given waste form

delete
Authorizations
Path parameters
form-uidstringRequired

Unique identifier of the waste form

uidstringRequired

Unique identifier of the waste load

Responses
204
Delete successful
delete
DELETE /api/v4/wam/forms/{form-uid}/loads/{uid}/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Accept: */*
204

Delete successful

No content

Read a load of a given waste form

get
Authorizations
Path parameters
form-uidstringRequired

Unique identifier of the waste form

uidstringRequired

Unique identifier of the waste load

Responses
200
Get successful
application/json
get
GET /api/v4/wam/forms/{form-uid}/loads/{uid}/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Accept: */*
200

Get successful

{
  "uid": "123e4567-e89b-12d3-a456-426614174000",
  "description": "Waste description",
  "weight": 12500,
  "quantity": 10,
  "eural_code": "02 01 01*",
  "physical_properties": "Flammable and reactive waste",
  "chemical_composition": "Radioactive Materials",
  "packaging_type": "Barrels",
  "treatment_type": "Regeneration of acids or bases.",
  "treatment_codes": [
    "R1",
    "D13"
  ]
}

Update a load of a given waste form

patch
Authorizations
Path parameters
form-uidstringRequired

Unique identifier of the waste form

uidstringRequired

Unique identifier of the waste load

Body
descriptionstringOptional

Description of the waste load

Example: Waste description
weightnumber · floatOptional

Weight of the waste in kilograms

Example: 12500
quantitynumber · doubleOptional

Quantity of packages. This is required for hazardous waste.

Example: 10
eural_codestringOptional

The Eural code of the waste. If this eural code indicates a hazardous waste, it should be suffixed with a *.

Example: 02 01 01
physical_propertiesstringOptional

Physical properties of the waste load. This is required for hazardous waste.

Example: Flammable and reactive waste
chemical_compositionstringOptional

Chemical composition of the waste load. This is required for hazardous waste.

Example: Radioactive Materials
packaging_typestringOptional

Packaging type of the waste load. This is required for hazardous waste.

Example: Barrels
treatment_typestringOptional

Treatment type of the waste load. This is required for hazardous waste.

Example: Regeneration of acids or bases.
Responses
200
Update successful
application/json
patch
PATCH /api/v4/wam/forms/{form-uid}/loads/{uid}/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 297

{
  "description": "Waste description",
  "weight": 12500,
  "quantity": 10,
  "eural_code": "02 01 01",
  "physical_properties": "Flammable and reactive waste",
  "chemical_composition": "Radioactive Materials",
  "packaging_type": "Barrels",
  "treatment_type": "Regeneration of acids or bases.",
  "treatment_codes": [
    "R1",
    "D13"
  ]
}
200

Update successful

{
  "uid": "123e4567-e89b-12d3-a456-426614174000",
  "description": "Waste description",
  "weight": 12500,
  "quantity": 10,
  "eural_code": "02 01 01*",
  "physical_properties": "Flammable and reactive waste",
  "chemical_composition": "Radioactive Materials",
  "packaging_type": "Barrels",
  "treatment_type": "Regeneration of acids or bases.",
  "treatment_codes": [
    "R1",
    "D13"
  ]
}

Last updated

Was this helpful?