Endpoint used to update a waste movement record that has already been submitted. It uses the waste tracking ID (wasteTrackingId) returned when the POST endpoint successfully submitted the original waste movement record. The waste tracking ID must be used in the URL path.
put/movements/{wasteTrackingId}/receive
Path parameters
wasteTrackingIdstring required
The globally unique id of the movement.
Request body
Example request
{
"apiCode": "ba6eb330-4f7f-11eb-a2fb-67c34e9ac07cg",
"dateTimeReceived": "UTC - 2025-09-15T12:12:28Z, BST - 2025-09-15T13:12:28+01:00",
"hazardousWasteConsignmentCode": "CJ32LE/A0001",
"reasonForNoConsignmentCode": "NO_DOC_WITH_WASTE",
"yourUniqueReference": "wTBrdgAA020",
"otherReferencesForMovement": [
{
"label": "PO Number",
"reference": "PO-12345"
},
{
"label": "Waste Ticket",
"reference": "WT-67890"
},
{
"label": "Haulier Note",
"reference": "HN-11111"
}
],
"specialHandlingRequirements": "The waste must be fully inspected by the waste handler according to the Hazardous waste consignment and or EWC codes provided.",
"wasteItems": [
{
"ewcCodes": [
200108,
150109
],
"wasteDescription": "Basic mixed construction and demolition waste, this includes recyclable house bricks, gypsum plaster and slates.",
"physicalForm": "Sludge",
"numberOfContainers": 2,
"typeOfContainers": "SKI",
"weight": {
"metric": "Tonnes",
"amount": 150,
"isEstimate": true
},
"containsPops": true,
"pops": {
"sourceOfComponents": "PROVIDED_WITH_WASTE",
"components": [
{
"code": "PFHXS",
"concentration": 12.5
}
]
},
"containsHazardous": true,
"hazardous": {
"sourceOfComponents": "PROVIDED_WITH_WASTE",
"hazCodes": [
"HP_5",
"HP_10"
],
"components": [
{
"name": "lead",
"concentration": 25.5
}
]
},
"disposalOrRecoveryCodes": [
{
"code": "\"R1\"\n",
"weight": {
"metric": "Tonnes",
"amount": 150,
"isEstimate": true
}
}
]
}
],
"carrier": {
"registrationNumber": "CBDL6",
"reasonForNoRegistrationNumber": "ON_SITE",
"organisationName": "Waste Carriers Lite Ltd",
"address": {
"fullAddress": "26a Oil Drum Lane, London, UK",
"postcode": "W12 7ZL"
},
"emailAddress": "mailbox@example.co.uk",
"phoneNumber": "020 4756 XXXX",
"vehicleRegistration": "RNT 493",
"meansOfTransport": "Rail"
},
"brokerOrDealer": {
"organisationName": "Waste Disposal Ltd",
"address": {
"fullAddress": "26a Oil Drum Lane, London, UK",
"postcode": "W12 7ZL"
},
"emailAddress": "mailbox@example.co.uk",
"phoneNumber": "020 4756 XXXX",
"registrationNumber": "CBDL6"
},
"receiver": {
"emailAddress": "mailbox@example.co.uk",
"phoneNumber": "020 4756 XXXX",
"authorisationNumber": "EPR/DD2522BF",
"regulatoryPositionStatements": [
343,
456,
789
]
},
"receipt": {
"address": {
"fullAddress": "26a Oil Drum Lane, London, UK",
"postcode": "W12 7ZL"
}
}
}Response
The waste movement receipt has been updated.
Example response
{
"validation": {
"warnings": [
{
"key": "wasteItems[0].disposalOrRecoveryCodes",
"errorType": "NotProvided",
"message": "Success/Failure"
}
]
}
}