Create Transport
Create the transport linked to the waste shipment.
Authorizations
Path parameters
uidstringRequired
Unique identifier of the waste form
Body
send_to_carrierboolean | nullableOptional
Whether to send the document to the carrier. If not provided, document will be sent to carrier only if the organizer is the carrier.
Responses
200
Transport successfully created
application/json
Responseall of
post
POST /api/v4/wam/forms/{uid}/create-transport/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 24
{
"send_to_carrier": true
}
200
Transport successfully created
{
"uid": "123e4567-e89b-12d3-a456-426614174000",
"name": "DAS-1",
"created": "2022-01-01T00:00:00Z",
"updated": "2022-01-01T00:00:00Z",
"status": "completed",
"pdf": {
"url": "http://example.com/pdf",
"updated_date": "2022-01-01T00:00:00Z"
},
"discontinued_reason": "Traffic accident",
"transport_uid": "123e4567-e89b-12d3-a456-426614174000",
"producer_id": 1,
"processor_id": 2,
"carrier_id": 3,
"organizer_id": 4,
"origin_id": 5,
"instructions": "Handle with care",
"sea_ship_name": "Sea ship name",
"sea_ship_imo_number": "IMO1234567",
"sea_ship_mmsi_number": "123456789",
"sea_ship_eni_number": "12345678",
"transport_date": "2022-01-01T00:00:00Z",
"carrier_contact_uid": "123e4567-e89b-12d3-a456-426614174000",
"organizer_signatory_uid": "123e4567-e89b-12d3-a456-426614174000",
"producer_contact_uid": "123e4567-e89b-12d3-a456-426614174000",
"processor_contact_uid": "123e4567-e89b-12d3-a456-426614174000",
"processor_signatory_uid": "123e4567-e89b-12d3-a456-426614174000"
}
Last updated
Was this helpful?