A foreign shipment ID of a third party system. This ID should be unique.
Attention: Since our API is still under development, endpoints may well change, or object structures may change. Of course, we try to avoid this as much as possible, but we cannot guarantee it. So that you have the possibility to react in time, we will soon offer you a possibility to subscribe to a newsletter. We would then inform all subscribers when something will change in the API. We are currently still looking for an integrable solution for newsletters, which can be used to subscribe and unsubscribe at this place. Until then, we would like to ask you to send us an email to support@cargosoft.de with the request that we inform you when there are planned changes to the API.
First of all each client has to request a bearer Java Web Toke (JWT) from the CargoSoft API. To receive a JWT, username and password are required. Username and password can only be created by CargoSoft. For more details see.
Please note: The JWT is valid for 24 hours. After that you have to request a new one.
To access the CargoSoft API endpoint, a JWT is required. The JWT has to be sent in the HTTP authorization header.
Example: This example shows a minimal curl with a bearer authorization header. The token is not valid because we only want to illustrate the structure.
curl --location --request POST 'https://api-demo.cargosoft.de/cargosoft/shipment/lookup' \
--header 'Authorization: Bearer eyJ0eXAiOiJqd3QiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJ1cGRhdGUiLCJjYXJnb3NvZnQtand0LNjc2NDQ1NTAzfQ.mK82rjSu0ltd0bf3mvXUqwpME05ck5OEuqnzsAQ8WPFPo' \
--data-raw '[]'"
Attention: Your user may be restricted. The CargoSoft API uses a permission system to grant access to the CargoSoft API endpoint. If your user is restricted or it's not allowed to use an endpoint you need please contact our support.
The webhook uses basic auth as its authorization type.
Example: This example shows a minimal curl request, to access the webhook. The basic auth is not valid.
curl --location --request POST 'https://api-demo.cargosoft.de/external/webhook' \
--header 'Authorization: Basic cG9ydg53xcvgawawb3J0YmFzZWNj' \
--data-raw '{}'"
Please note: Your user needs a special role to access the webhook endpoint via basic auth.
The CargoSoft API uses CRUD operations. We attempt to implement each CRUD operation for each functional group of endpoints if it makes sense. The delete operation is one of the most sensitive function and will not available to each function group.
The CargoSoft API extends the CRUD retrieve operations with lookup operations. Each functional group of endpoints should have a lookup method implemented. Lookups should be used to search functional objects with given criteria named identifiers. The identifiers may be different to each functional group. To find out which functional identifier are possible, please take a look at the corresponding functional group.
The identifier will be sent in the request body to the API lookup endpoint. An identifier contains the following three information:
Example: Lookup request body to search a shipment
[
{
"match_mode": "EQUALS",
"key": "MBL",
"value": "MASTER_12345"
},
{
"match_mode": "EQUALS",
"key": "MODE_OF_TRANSPORT",
"value": "SEA"
}
]
Please note: When using one of any lookup methods, please define search criteria as precisely as possible to limit the result of objects.
The lookup may contain ordering by one or more criteria. The ordering will passed as a query parameter.
The result set of a lookup includes zero up to n functional objects depending on the search criteria. Each functional object contains an ID. The ID can be used to retrieve additional information by passing the id as a path parameter of the retrieve endpoint.
Example: Lookup a shipment and retrieve all shipment events
Most endpoints of the CargoSoft API use pagination mechanics.
The pagination information will be sent as a request query parameter to the API endpoint. The pagination contains the following two query parameter:
Example: Lookup a shipment with pagination query parameter
curl --location --request POST 'https://api-demo.cargosoft.de/cargosoft/shipment/lookup?page_no=1&page_size=5' \
--header 'Authorization: Bearer eyJ0eXAiOiJqd3QiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJ1cGRhdGUiLCJjYXJnb3NvZnQtand0LNjc2NDQ1NTAzfQ.mK82rjSu0ltd0bf3mvXUqwpME05ck5OEuqnzsAQ8WPFPo' \
--header 'Content-Type: application/json' \
--data '[
{
"match_mode": "EQUALS",
"key": "MBL",
"value": "MASTER_12345"
},
{
"match_mode": "EQUALS",
"key": "MODE_OF_TRANSPORT",
"value": "SEA"
}
]'
The response contains two additional headers:
With these both headers it is possible to scroll through a result set.
For testing purposes CargoSoft hosted a server with the last released CargoSoft API.
URL: https://api-demo.cargosoft.de
To use the test environment, please use the "Try it" console in this documentation. Login credentials are needed to use the test API. The credentials have to be requested from the CargoSoft support. The received information grants access to a test account which should be able to use all endpoints. If any endpoint is restricted, please contact CargoSoft. Please have in mind that the test environment will be reset every night!
To retrieve a shipment, the lookup endpoint of the shipment functional group is one of the common possibilities that should be used. The following figure shows the use case to look up a shipment. To keep the figure simple, the authorization process is referred.
CargoSoft has different pools in which status information are stored. These are described in detail in the next subsections. However, in order to understand the differences exactly, the following graphic tries to clarify how the status message flow works.
These status messages come from external status providers and service providers who supply CargoSoft with status information. They cannot be entered or changed by CargoSoft employees by hand. A shipment provider status always represents exactly one state - planned / estimated or the actual date and time (depending on the name of the status). The codes of the statuses are defined by the providers and are variable depending on the provider.
Please note: There is no endpoint to retrieve provider status from the CargoSoft API yet. This endpoint will be implemented in a later release.
CargoSoft customers can define this status code themselves. In addition, the shipment provider statuses can be mapped into a shipment status if the CargoSoft customer configured his basic data accordingly. Here, for example, it can be defined that the status ABC of provider XYZ has to be processed as shipment status ETA. In this case ETA would be a freely defined code for the status. Therefore, there is no list of valid codes.
With this status, there are also two forms of date information per data record. Once a planned and an actual one. This means that a status ETA, although obviously planned, can contain an actual date. However, this is due to the recording of the customer's data.
The CargoSoft customer can add this status information manually, but an existing record can no longer be changed.
Please note: There is no endpoint to retrieve CargoSoft status from the CargoSoft API yet. This endpoint will be implemented in a later release.
Shipment events are status events that are defined by CargoSoft. These events are fixed and can always be called up - unless there is no data available for the shipment. For a complete list of shipment event codes see here. A shipment event can be created automatically from a shipment or provider status if this is set in the CargoSoft master data. A status always represents exactly one instance - planned or actual and the information can be changed at any time by hand, but also by background processes.
https://api-cargosoft.redocly.app/_mock/2024.2/openapi/
https://api-demo.cargosoft.de/
The order by for ordering API results sending back as response.
Items Enum Value | Description |
---|---|
SHIPMENT_ID | A foreign shipment ID of a third party system. This ID should be unique. |
LAST_MODIFIED_TIME | The time, when the shipment was last modified. |
DIRECTION | Direction of the shipment. Possible values are [I, E]. I = import shipments, E = export shipments. |
CREATION_DATE | System date when the shipment was created. |
LAST_MODIFIED_DATE | The date, when the shipment was last modified. |
CUSTOMER_ADDRESS_NUMBER | CargoSoft address number of the customer address. |
FILENUMBER | CargoSoft shipment number. The shipment number is unique in combination with the client. |
CLIENT | The CargoSoft client. |
HBL | House bl number of the Shipment. |
MBL | Master bL number of the Shipment. |
Description of the Identifier DTO schema. This DTO contains the match mode and identifiers of a functional object for instance the shipment identifier.
Identifier key. For instance a ShipmentIdentifier
Enum Value | Description |
---|---|
SHIPMENT_ID | A foreign shipment ID of a third party system. This ID should be unique. |
LAST_MODIFIED_TIME | The time, when the shipment was last modified. |
DIRECTION | Direction of the shipment. Possible values are [I, E]. I = import shipments, E = export shipments. |
CREATION_DATE | System date when the shipment was created. |
LAST_MODIFIED_DATE | The date, when the shipment was last modified. |
CUSTOMER_ADDRESS_NUMBER | CargoSoft address number of the customer address. |
FILENUMBER | CargoSoft shipment number. The shipment number is unique in combination with the client. |
CLIENT | The CargoSoft client. |
HBL | House bl number of the Shipment. |
MBL | Master bL number of the Shipment. |
The match mode.
Enum Value | Description |
---|---|
OR | Or. |
EQUALS | Equals. |
IN | In. |
LT | Lower than. |
LE | Lower equals |
CONTAINS | Contains |
GT | Greater than. |
GE | Greater equals |
x-parsed-md-OR | Or. |
x-parsed-md-EQUALS | Equals. |
https://api-cargosoft.redocly.app/_mock/2024.2/openapi/cargosoft/shipment/lookup
https://api-demo.cargosoft.de/cargosoft/shipment/lookup
curl -i -X POST \
'https://api-cargosoft.redocly.app/_mock/2024.2/openapi/cargosoft/shipment/lookup?order_by=ID&order_mode=ASC&page_no=0&page_size=50' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '[
{
"match_mode": "EQUALS",
"key": "CLIENT",
"value": "001"
},
{
"match_mode": "EQUALS",
"key": "MBL",
"value": "MASTER_12345"
},
{
"match_mode": "EQUALS",
"key": "DIRECTION",
"value": "E"
},
{
"match_mode": "EQUALS",
"key": "MODE_OF_TRANSPORT",
"value": "SEA"
}
]'
Records found
The shipment direction. Possible values are [I, E]. I = import shipments, E = export shipments.
The month in which freight services are provided, used for billing and reporting.
Indicates whether the recipient will pick up the goods directly from the warehouse or terminal.
Indicates whether the sender will deliver the goods to the carrier or warehouse by themselves.
The transport of goods from the origin to the main carrier, preceding the main shipment.
The transportation of goods from the main carrier to the final destination after the main shipment.
The weight used to calculate shipping costs, based on either the actual weight or the volumetric weight, whichever is higher.
Customizable field used to classify or categorize the order based on business-specific criteria.
TBD
{ "id": 6843241, "client": "001", "direction": "E", "department": "BRE", "numberOfGoods": 5, "shipment_number": "BRE-001-12012023-876", "master_reference": "MASTER_12345", "house_reference": "HOUSE_0988976", "bl_type": "HBL", "mode_of_transport": "SEA", "month_of_service": "202301" }
https://api-cargosoft.redocly.app/_mock/2024.2/openapi/cargosoft/shipment/{id}/airmaincarriage
https://api-demo.cargosoft.de/cargosoft/shipment/{id}/airmaincarriage
curl -i -X GET \
'https://api-cargosoft.redocly.app/_mock/2024.2/openapi/cargosoft/shipment/{id}/airmaincarriage' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Record retrieved
The origin of this leg. This object contains several information about the location and its dates and times.
The destination of this leg. This object contains several information about the location and its dates and times.
The number for the correct order of the transport legs. Important if more than one leg is entered for the shipment.
This example contains 2 legs for an export airfright shipment.
[ { "origin": { … }, "destination": { … }, "leg_no": 1, "flight_no": "985472", "airline_awb_code": "438577456345", "airline_name": "AC" }, { "origin": { … }, "destination": { … }, "leg_no": 2, "flight_no": "837265437", "airline_awb_code": "438577456345", "airline_name": "AC" } ]
https://api-cargosoft.redocly.app/_mock/2024.2/openapi/cargosoft/shipment/{id}
https://api-demo.cargosoft.de/cargosoft/shipment/{id}
curl -i -X GET \
'https://api-cargosoft.redocly.app/_mock/2024.2/openapi/cargosoft/shipment/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Record retrieved
The shipment direction. Possible values are [I, E]. I = import shipments, E = export shipments.
The month in which freight services are provided, used for billing and reporting.
Indicates whether the recipient will pick up the goods directly from the warehouse or terminal.
Indicates whether the sender will deliver the goods to the carrier or warehouse by themselves.
The transport of goods from the origin to the main carrier, preceding the main shipment.
The transportation of goods from the main carrier to the final destination after the main shipment.
The weight used to calculate shipping costs, based on either the actual weight or the volumetric weight, whichever is higher.
{ "id": 0, "client": "string", "direction": "string", "office": "string", "employees": { "closed_employee_matchcode": "string", "last_modified_employee_matchcode": "string", "created_employee_matchcode": "string", "responsible_employee_matchcode": "string" }, "memos": [ { … } ], "aes": [ { … } ], "shipment_number": "string", "master_reference": "string", "house_reference": "string", "bl_type": "string", "mode_of_transport": "string", "month_of_service": "string", "total_packages": 0, "total_gross_weight": 0, "self_pickup": "string", "self_delivery": "string", "goods": [ { … } ], "addresses": [ { … } ], "pre_carriage": { "carriage_legs": [ … ] }, "main_carriage": { "carriage_legs": [ … ] }, "post_carriage": { "carriage_legs": [ … ] }, "events": [ { … } ], "terms_of_delivery_matchcode": "string", "terms_of_delivery_name": "string", "total_volume": 0, "chargeableWeight": 0, "original_shipment_number": "string", "foreign_id": "string", "movement_matchcode": "string", "insurance": { "waiver_customer": true, "insurable_value": 0, "insurable_value_currency_matchcode": "string", "value_of_goods": 0, "value_of_goods_currency_matchcode": "string", "insurance_text": "string", "transport_insurance": true, "insurance_type": "string", "insurer": { … } }, "credit_data": { "lc_number": "string", "latest_shipment_date": "2019-08-24", "lc_expiry": "2019-08-24" }, "customs_data": { "custom_clearance_date": "2019-08-24", "clearance": "string", "book": "string" }, "containers": [ { … } ], "custom_fields": [ { … } ], "last_modified_date_time": "2019-08-24T14:15:22Z", "created_date_time": "2019-08-24T14:15:22Z", "order_date_time": "2019-08-24T14:15:22Z", "project_matchcode": "string" }
This endpoint retrieves all events of the shipment. To retrieve the events, the shipment id is needed. It is possible that not all events are included in the response because they are not entered or know in the shipment unitil now. To retrive the shipment id, use the lookup endpoint of this chapter.
https://api-cargosoft.redocly.app/_mock/2024.2/openapi/cargosoft/shipment/{id}/events
https://api-demo.cargosoft.de/cargosoft/shipment/{id}/events
curl -i -X GET \
'https://api-cargosoft.redocly.app/_mock/2024.2/openapi/cargosoft/shipment/{id}/events' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Records found
The event code of this shipment event. The code describes the functional meaning of the event date and time.
Enum Value | Description |
---|---|
GATE_OUT | TBD. |
TRANSSHIPMENT | The goods are at the transshipment port (seafreight only). |
LOADING_START | The goods will be loaded into the vessel / airplane. |
LOADING_END | The goods are loaded into the vessel airplane. |
POL_ARRIVAL | The goods arrived the port of loading. |
CUSTOMS_CLEARANCE | The goods are cleared by customs. |
POD_DEPARTURE | TBD. |
POL_DEPARTURE | The goods are departured (ETD and ATD). |
POL_DEPARTURE_REVISED | The goods are departured (revised Date). |
POD_ARRIVAL_REVISED | The goods arrived at the port of discharge (revised Date). |
The event type of this shipment event. The event type describes if the event date and time is estimated or actual.
Enum Value | Description |
---|---|
ESTIMATED | Estimated date and time |
ACTUAL | Actual date and time. |
x-parsed-md-ESTIMATED | Estimated date and time |
x-parsed-md-ACTUAL | Actual date and time. |
TBD
[ { "event": "PICKUP", "type": "ACTUAL", "shipment_id": 318283, "date_time": { … }, "location": { … } }, { "event": "PICKUP", "type": "ESTIMATED", "shipment_id": 318283, "date_time": { … }, "location": { … } }, { "event": "POL_ARRIVAL", "type": "ACTUAL", "shipment_id": 318283, "date_time": { … }, "location": { … } }, { "event": "POL_ARRIVAL", "type": "ESTIMATED", "shipment_id": 318283, "date_time": { … }, "location": { … } } ]
https://api-cargosoft.redocly.app/_mock/2024.2/openapi/cargosoft/shipment/{id}/seamaincarriage
https://api-demo.cargosoft.de/cargosoft/shipment/{id}/seamaincarriage
curl -i -X GET \
'https://api-cargosoft.redocly.app/_mock/2024.2/openapi/cargosoft/shipment/{id}/seamaincarriage' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Record retrieved
The origin of this leg. This object contains several information about the location and its dates and times.
The destination of this leg. This object contains several information about the location and its dates and times.
The number for the correct order of the transport legs. Important if more than one leg is entered for the shipment.
[ { "origin": { … }, "destination": { … }, "leg_no": 0, "mot": "string", "voyage_no": "string", "imo_code": "string", "vessel_name": "string", "vessel_flag": "string", "call_sign": "string" } ]
The event code of this shipment event. The code describes the functional meaning of the event date and time.
Enum Value | Description |
---|---|
GATE_OUT | TBD. |
TRANSSHIPMENT | The goods are at the transshipment port (seafreight only). |
LOADING_START | The goods will be loaded into the vessel / airplane. |
LOADING_END | The goods are loaded into the vessel airplane. |
POL_ARRIVAL | The goods arrived the port of loading. |
CUSTOMS_CLEARANCE | The goods are cleared by customs. |
POD_DEPARTURE | TBD. |
POL_DEPARTURE | The goods are departured (ETD and ATD). |
POL_DEPARTURE_REVISED | The goods are departured (revised Date). |
POD_ARRIVAL_REVISED | The goods arrived at the port of discharge (revised Date). |
The event type of this shipment event. The event type describes if the event date and time is estimated or actual.
Enum Value | Description |
---|---|
ESTIMATED | Estimated date and time |
ACTUAL | Actual date and time. |
x-parsed-md-ESTIMATED | Estimated date and time |
x-parsed-md-ACTUAL | Actual date and time. |
https://api-cargosoft.redocly.app/_mock/2024.2/openapi/cargosoft/shipment/{shipmentId}/event
https://api-demo.cargosoft.de/cargosoft/shipment/{shipmentId}/event
curl -i -X POST \
'https://api-cargosoft.redocly.app/_mock/2024.2/openapi/cargosoft/shipment/{shipmentId}/event?type=ACTUAL' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"event": "PICKUP",
"type": "ACTUAL",
"shipment_id": 327410,
"date_time": {
"date": "2025-10-01",
"time": "12:00:00",
"zone_offset": "+02:00"
},
"location": {
"codes": [
{
"type": "UNLOC",
"code": "DEBRE"
}
],
"name": "BREMEN",
"latitude": null,
"longitude": null
}
}'
The event has been created successfully.
The event code of this shipment event. The code describes the functional meaning of the event date and time.
Enum Value | Description |
---|---|
GATE_OUT | TBD. |
TRANSSHIPMENT | The goods are at the transshipment port (seafreight only). |
LOADING_START | The goods will be loaded into the vessel / airplane. |
LOADING_END | The goods are loaded into the vessel airplane. |
POL_ARRIVAL | The goods arrived the port of loading. |
CUSTOMS_CLEARANCE | The goods are cleared by customs. |
POD_DEPARTURE | TBD. |
POL_DEPARTURE | The goods are departured (ETD and ATD). |
POL_DEPARTURE_REVISED | The goods are departured (revised Date). |
POD_ARRIVAL_REVISED | The goods arrived at the port of discharge (revised Date). |
The event type of this shipment event. The event type describes if the event date and time is estimated or actual.
Enum Value | Description |
---|---|
ESTIMATED | Estimated date and time |
ACTUAL | Actual date and time. |
x-parsed-md-ESTIMATED | Estimated date and time |
x-parsed-md-ACTUAL | Actual date and time. |
TBD
{ "event": "PICKUP", "type": "ACTUAL", "shipment_id": 327410, "date_time": { "date": "2025-10-01", "time": "12:00:00", "zone_offset": "+02:00" }, "location": { "codes": [ … ], "name": "BREMEN", "latitude": null, "longitude": null } }
Database id of the record you want to update.
Enum Value | Description |
---|---|
GATE_OUT | TBD. |
TRANSSHIPMENT | The goods are at the transshipment port (seafreight only). |
LOADING_START | The goods will be loaded into the vessel / airplane. |
LOADING_END | The goods are loaded into the vessel airplane. |
POL_ARRIVAL | The goods arrived the port of loading. |
CUSTOMS_CLEARANCE | The goods are cleared by customs. |
POD_DEPARTURE | TBD. |
POL_DEPARTURE | The goods are departured (ETD and ATD). |
POL_DEPARTURE_REVISED | The goods are departured (revised Date). |
POD_ARRIVAL_REVISED | The goods arrived at the port of discharge (revised Date). |
The event code of this shipment event. The code describes the functional meaning of the event date and time.
Enum Value | Description |
---|---|
GATE_OUT | TBD. |
TRANSSHIPMENT | The goods are at the transshipment port (seafreight only). |
LOADING_START | The goods will be loaded into the vessel / airplane. |
LOADING_END | The goods are loaded into the vessel airplane. |
POL_ARRIVAL | The goods arrived the port of loading. |
CUSTOMS_CLEARANCE | The goods are cleared by customs. |
POD_DEPARTURE | TBD. |
POL_DEPARTURE | The goods are departured (ETD and ATD). |
POL_DEPARTURE_REVISED | The goods are departured (revised Date). |
POD_ARRIVAL_REVISED | The goods arrived at the port of discharge (revised Date). |
The event type of this shipment event. The event type describes if the event date and time is estimated or actual.
Enum Value | Description |
---|---|
ESTIMATED | Estimated date and time |
ACTUAL | Actual date and time. |
x-parsed-md-ESTIMATED | Estimated date and time |
x-parsed-md-ACTUAL | Actual date and time. |
https://api-cargosoft.redocly.app/_mock/2024.2/openapi/cargosoft/shipment/{shipmentId}/event/{id}
https://api-demo.cargosoft.de/cargosoft/shipment/{shipmentId}/event/{id}
curl -i -X PUT \
'https://api-cargosoft.redocly.app/_mock/2024.2/openapi/cargosoft/shipment/{shipmentId}/event/{id}?type=ACTUAL' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"event": "PICKUP",
"type": "ACTUAL",
"shipment_id": 327410,
"date_time": {
"date": "2025-10-01",
"time": "12:00:00",
"zone_offset": "+02:00"
},
"location": {
"codes": [
{
"type": "UNLOC",
"code": "DEBRE"
}
],
"name": "BREMEN",
"latitude": null,
"longitude": null
}
}'
The event has been updated successfully.
The event code of this shipment event. The code describes the functional meaning of the event date and time.
Enum Value | Description |
---|---|
GATE_OUT | TBD. |
TRANSSHIPMENT | The goods are at the transshipment port (seafreight only). |
LOADING_START | The goods will be loaded into the vessel / airplane. |
LOADING_END | The goods are loaded into the vessel airplane. |
POL_ARRIVAL | The goods arrived the port of loading. |
CUSTOMS_CLEARANCE | The goods are cleared by customs. |
POD_DEPARTURE | TBD. |
POL_DEPARTURE | The goods are departured (ETD and ATD). |
POL_DEPARTURE_REVISED | The goods are departured (revised Date). |
POD_ARRIVAL_REVISED | The goods arrived at the port of discharge (revised Date). |
The event type of this shipment event. The event type describes if the event date and time is estimated or actual.
Enum Value | Description |
---|---|
ESTIMATED | Estimated date and time |
ACTUAL | Actual date and time. |
x-parsed-md-ESTIMATED | Estimated date and time |
x-parsed-md-ACTUAL | Actual date and time. |
TBD
{ "event": "PICKUP", "type": "ACTUAL", "shipment_id": 327410, "date_time": { "date": "2025-10-01", "time": "12:00:00", "zone_offset": "+02:00" }, "location": { "codes": [ … ], "name": "BREMEN", "latitude": null, "longitude": null } }