Details
This will delete the waste details of that company. To be noted that this will not delete the VAT number nor the "is_carrier" flag.
Id of the company. It is named pk in the details of a company.
DELETE /api/v4/wam/companies/{company-id}/details/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Accept: */*
Company waste details are deleted
No content
Id of the company. It is named pk in the details of a company.
GET /api/v4/wam/companies/{company-id}/details/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Accept: */*
Waste details of that company
{
"is_organizer": false,
"is_producer": false,
"is_processor": false,
"is_carrier": false,
"is_citizen": false,
"enterprise_number": "BE 0429 261 424",
"producer_establishment_unit_number": "2015433336",
"processor_establishment_unit_number": "2015433336",
"vat_number": "FR16807564448"
}
Id of the company. It is named pk in the details of a company.
True if the company is a waste shipment organizer
false
True if the company is a waste producer
false
True if the company is a waste processor
false
True if the company is a carrier
false
True if the waste producer is a citizen and not a company
false
Enterprise number of the company
BE 0429 261 424
Producer establishment unit number of the company
2015433336
Pattern: ^([2-8][0-9]{9})$
Processor establishment unit number of the company
2015433336
Pattern: ^([2-8][0-9]{9})$
VAT number of the company
FR16807564448
POST /api/v4/wam/companies/{company-id}/details/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 269
{
"is_organizer": false,
"is_producer": false,
"is_processor": false,
"is_carrier": false,
"is_citizen": false,
"enterprise_number": "BE 0429 261 424",
"producer_establishment_unit_number": "2015433336",
"processor_establishment_unit_number": "2015433336",
"vat_number": "FR16807564448"
}
Updated waste details of that company
{
"is_organizer": false,
"is_producer": false,
"is_processor": false,
"is_carrier": false,
"is_citizen": false,
"enterprise_number": "BE 0429 261 424",
"producer_establishment_unit_number": "2015433336",
"processor_establishment_unit_number": "2015433336",
"vat_number": "FR16807564448"
}
Last updated
Was this helpful?