Dock Activities
Authorizations
Query parameters
pageintegerOptional
A page number within the paginated result set.
date__gtestring · date-timeOptional
Filter dock activities with a date greater or equal than provided value. This filter is based on effective date if applicable, or scheduled date of applicable, or requested date.
date__ltestring · date-timeOptional
Filter dock activities with a date lower or equal than provided value. This filter is based on effective date if applicable, or scheduled date of applicable, or requested date.
no_datebooleanOptional
Filter dock activities with no date. This filter is based on effective date if applicable, or scheduled date of applicable, or requested date.
address_id__instringOptionalExample:
Comma-separated list of address ids for the requested dock activities
12345,9876
Responses
200
Get successful
application/json
get
GET /api/v4/dock-activities/ HTTP/1.1
Host: api.dashdoc.eu
Authentication: YOUR_API_KEY
Accept: */*
200
Get successful
{
"count": 1,
"next": "text",
"previous": "text",
"results": [
{
"uid": "687cddac-dbd2-11ea-9024-0242ac130006",
"transport_uid": "687cddac-dbd2-11ea-9024-0242ac130006",
"transport_tags": [
"text"
],
"dock_done_observations": "text",
"dock_done_date": "2025-06-22T22:31:25.879Z",
"trucker": {
"pk": 1,
"display_name": "Michel Blanc"
},
"carrier": {
"pk": 1,
"name": "Carrier SA"
},
"shipper": {
"pk": 1,
"name": "Shipper SAS"
},
"shipper_reference": "text",
"vehicle": {
"pk": 1,
"license_plate": "text"
},
"trailer": {},
"category": "loading",
"loads": [
{
"uid": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"loading_scheduled_date": "2025-06-22T22:31:25.879Z",
"unloading_scheduled_date": "2025-06-22T22:31:25.879Z",
"loading_address": {
"name": "Transport Bouvet",
"address": "3 rue des champs",
"city": "Nantes",
"postcode": "44000",
"country": "FR"
},
"unloading_address": {
"name": "Transport Bouvet",
"address": "3 rue des champs",
"city": "Nantes",
"postcode": "44000",
"country": "FR"
},
"quantity": 1,
"category": "text",
"complementary_information": "text",
"weight": 1,
"volume": 1,
"volume_display_unit": "m3",
"linear_meters": 1,
"is_dangerous": true
}
]
}
]
}
Last updated
Was this helpful?