Loads
Unique identifier of the waste form
A page number within the paginated result set.
GET /api/v4/wam/forms/{form-uid}/loads/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Accept: */*
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"
]
}
]
}
Unique identifier of the waste form
Description of the waste load
Waste description
Weight of the waste in kilograms
12500
Quantity of packages. This is required for hazardous waste.
10
The Eural code of the waste. If this eural code indicates a hazardous waste, it should be suffixed with a *.
02 01 01
Physical properties of the waste load. This is required for hazardous waste.
Flammable and reactive waste
Chemical composition of the waste load. This is required for hazardous waste.
Radioactive Materials
Packaging type of the waste load. This is required for hazardous waste.
Barrels
Treatment type of the waste load. This is required for hazardous waste.
Regeneration of acids or bases.
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"
]
}
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"
]
}
Unique identifier of the waste form
Unique identifier of the waste load
DELETE /api/v4/wam/forms/{form-uid}/loads/{uid}/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Accept: */*
Delete successful
No content
Unique identifier of the waste form
Unique identifier of the waste load
GET /api/v4/wam/forms/{form-uid}/loads/{uid}/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Accept: */*
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"
]
}
Unique identifier of the waste form
Unique identifier of the waste load
Description of the waste load
Waste description
Weight of the waste in kilograms
12500
Quantity of packages. This is required for hazardous waste.
10
The Eural code of the waste. If this eural code indicates a hazardous waste, it should be suffixed with a *.
02 01 01
Physical properties of the waste load. This is required for hazardous waste.
Flammable and reactive waste
Chemical composition of the waste load. This is required for hazardous waste.
Radioactive Materials
Packaging type of the waste load. This is required for hazardous waste.
Barrels
Treatment type of the waste load. This is required for hazardous waste.
Regeneration of acids or bases.
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"
]
}
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?