Transportial OTMS API (0.9.2)

Download OpenAPI description
Languages
Servers
Mock server
https://docs.transportial.com/_mock/apis/
Test environment
https://test.api.otms.transportial.com/api/
Production
https://api.otms.transportial.com/api/

Transportial

Our full API documentation can be found here for OTMS. It describes our endpoints and the way we accept data.

Authentication

You can authenticate users by a login call and sending their token in the Authorization header.

OTM5

Our API is fully supportive of the OTM5 data structure. You can send and receive those objects in the exact definition. In our documentation you will find our other objects and you don't need to use Associations, we do return that structure however.

ServiceCard

Object describing a geographic ServiceCard. A ServiceCard can either be a point or an area.

Operations

Tire

Object describing a geographic Tire. A Tire can either be a point or an area.

Operations

Action

Actions are dynamic entities that are able to couple together various static entities at a certain moment in time. For instance a Load action couples together a Consignment and a Vehicle at the moment the Loading happens.

Operations

Actor

Actors can be stacked and constrain different activities in their context

Operations

Charge

Charges

Operations

Invoice

Invoices

Operations

LedgerEntry

LedgerEntry ...

Operations

Payout

Payouts

Operations

Plan

Plans

Operations

Quote

Quotes

Operations

Administration

Administrations can be stacked and constrain different activities in their context

Operations

Transaction

Transactions

Operations

Alert

Object describing a geographic alert. A alert can either be a point or an area.

Operations

Publisher

Object describing a geographic publisher. A publisher can either be a point or an area.

Operations

App

Object describing a geographic app. A app can either be a point or an area.

Operations

Attribute

A generic entity that can help in defining other entities properties

Operations

Ban

Object describing a geographic Ban. A Ban can either be a point or an area.

Operations

Board

Boards contain Lanes and might represent a module of a project or a project itself

Operations

Booking

Object describing a geographic booking. A booking can either be a point or an area.

Operations

Business

Business is a base entity that describes a companies information. Thiis entity is used for contracts, clients, invoices, quotes, etc. It can be any type of relation you do business with.

Operations

Camera

A Camera

Operations

CapacityContract

The CapacityContract is the entity to model a contract of a purchase of certain amount of scheduled capacity.

Operations

Capacity

A capacity models the amount of cargo, a schedule can deliver.

Operations

Certificate

Object describing a geographic Certificate. A Certificate can either be a point or an area.

Operations

Chat

Sending messages to users grouped by rooms

Operations

MessageTemplate

MessageTemplates can be stacked and constrain different activities in their context

Operations

Chauffeur

Chauffeurs are the people who are responsible for controlling a Vehicle. They have schedules, planning and legal responsibilities.

Operations

Complaint

Object describing a geographic Complaint. A Complaint can either be a point or an area.

Operations

Consignment

Consignments can be stacked and constrain different activities in their context

Operations

Add documents

Request

Add documents to tripp

Path
idstringrequired
Headers
Authorizationstringrequired
Bodyapplication/jsonrequired
documentsArray of objects(DocumentAssociation)
curl -i -X PUT \
  'https://docs.transportial.com/_mock/apis/consignment/{id}/documents' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "documents": [
      {
        "associationType": "inline",
        "entity": {
          "nonce": "string",
          "description": "string",
          "expiresAt": "2019-08-24T14:15:22Z",
          "fileName": "string",
          "mimeType": "string",
          "encoding": "string",
          "verified": true,
          "content": {
            "contentType": "data",
            "data": "string"
          },
          "file": {
            "nonce": "string",
            "url": "string",
            "path": "string",
            "name": "string",
            "originalName": "string",
            "size": 0,
            "purpose": "string",
            "type": "IMAGE",
            "mimeType": "string",
            "extension": "string",
            "uploadedAt": "2019-08-24T14:15:22Z"
          },
          "externalAttributes": {
            "property1": {},
            "property2": {}
          },
          "name": "string"
        }
      }
    ]
  }'

Responses

Success

Bodyapplication/json
successboolean
messagestring
codeinteger(int32)
tripobject(TripModel)
Response
application/json
{ "success": true, "message": "string", "code": 0, "trip": { "id": "string", "nonce": "string", "uuid": "string", "primaryPlatformId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "name": "string", "type": "internal", "tripNr": "string", "route": {}, "status": "draft", "planStatus": "ok", "routeStatus": "on_route", "currentAction": {}, "transportMode": "maritime", "capacityContract": {}, "linkedTrip": true, "chauffeurs": [], "transportEquipments": [], "documents": [], "actors": [], "constraints": [], "identifiers": [], "pricingElements": [], "startDate": "2019-08-24T14:15:22Z", "endDate": "2019-08-24T14:15:22Z", "kmStart": 0, "kmEnd": 0, "booking": {}, "shareSettings": {}, "externalAttributes": {}, "expectedCost": {}, "expectedRevenue": {}, "actualCost": {}, "CO2eWTW": 0.1, "CO2eTTW": 0.1, "nextAction": {}, "lastAction": {}, "versionNumber": 0 } }

Combine consignments

Request

Combine consignments

Headers
Authorizationstringrequired
Bodyapplication/jsonrequired
noncestring

Nonce, a field that is not saved and returns exactly the same value you sent. This ensures you can identify your object that has been updated or created.

versionNumberinteger(int32)
hasAgreedToPriceboolean
namestring
consignmentNrstring
descriptionstring
statusstring
Enum"draft""requested""confirmed""in_transit""completed""cancelled""partially_planned""planned""partially_completed""partially_in_transit"
highValueGoodsboolean
goodsArray of objects(Association)
consignmentobject(Consignment)Recursive
originalPhysicalSenderobject(Location)
originalLegalSenderobject(Location)
originalPhysicalAddresseeobject(Location)
originalLegalAddresseeobject(Location)
isPlannedToLastLocationboolean
documentsArray of objects(Association)
actorsArray of objects(Association)
pricingElementsArray of objects(PricingElement)
externalAttributesobject
expectedRevenueobject(Money)
expectedCostobject(Money)
combinedboolean
typestring

This field can be used to categorize and/or group shipments by type, depending on the needs of a specific logistic process.

remarkstring

Remark concerning the complete consignment, to be printed on the transport document.

constraintsArray of objects(Constraint)

In the context of a Consignment, constraints can be used to e.g. define minimum or maximum temperatures for consignments, or date time constraints for delivery.

attributesArray of objects(Attribute)
curl -i -X POST \
  https://docs.transportial.com/_mock/apis/consignments/combine \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "nonce": "string",
    "versionNumber": 0,
    "hasAgreedToPrice": true,
    "name": "string",
    "consignmentNr": "string",
    "description": "string",
    "status": "draft",
    "highValueGoods": true,
    "goods": [
      {
        "associationType": "inline"
      }
    ],
    "consignment": {},
    "originalPhysicalSender": {
      "nonce": "string",
      "type": "warehouse",
      "name": "string",
      "unCode": "string",
      "geoReference": {
        "nonce": "string",
        "type": "addressGeoReference",
        "hash": "string",
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postCode": "string",
        "city": "string",
        "country": "string"
      },
      "administrativeReference": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string"
      },
      "contactPersons": [
        {
          "nonce": "string",
          "firstName": "string",
          "lastName": "string",
          "position": "string",
          "email": "string",
          "phone": "string"
        }
      ],
      "hash": "string",
      "externalAttributes": {
        "property1": {},
        "property2": {}
      },
      "attributes": [
        {
          "nonce": "string",
          "name": "string",
          "color": "string"
        }
      ],
      "remark": "string"
    },
    "originalLegalSender": {
      "nonce": "string",
      "type": "warehouse",
      "name": "string",
      "unCode": "string",
      "geoReference": {
        "nonce": "string",
        "type": "addressGeoReference",
        "hash": "string",
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postCode": "string",
        "city": "string",
        "country": "string"
      },
      "administrativeReference": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string"
      },
      "contactPersons": [
        {
          "nonce": "string",
          "firstName": "string",
          "lastName": "string",
          "position": "string",
          "email": "string",
          "phone": "string"
        }
      ],
      "hash": "string",
      "externalAttributes": {
        "property1": {},
        "property2": {}
      },
      "attributes": [
        {
          "nonce": "string",
          "name": "string",
          "color": "string"
        }
      ],
      "remark": "string"
    },
    "originalPhysicalAddressee": {
      "nonce": "string",
      "type": "warehouse",
      "name": "string",
      "unCode": "string",
      "geoReference": {
        "nonce": "string",
        "type": "addressGeoReference",
        "hash": "string",
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postCode": "string",
        "city": "string",
        "country": "string"
      },
      "administrativeReference": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string"
      },
      "contactPersons": [
        {
          "nonce": "string",
          "firstName": "string",
          "lastName": "string",
          "position": "string",
          "email": "string",
          "phone": "string"
        }
      ],
      "hash": "string",
      "externalAttributes": {
        "property1": {},
        "property2": {}
      },
      "attributes": [
        {
          "nonce": "string",
          "name": "string",
          "color": "string"
        }
      ],
      "remark": "string"
    },
    "originalLegalAddressee": {
      "nonce": "string",
      "type": "warehouse",
      "name": "string",
      "unCode": "string",
      "geoReference": {
        "nonce": "string",
        "type": "addressGeoReference",
        "hash": "string",
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postCode": "string",
        "city": "string",
        "country": "string"
      },
      "administrativeReference": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string"
      },
      "contactPersons": [
        {
          "nonce": "string",
          "firstName": "string",
          "lastName": "string",
          "position": "string",
          "email": "string",
          "phone": "string"
        }
      ],
      "hash": "string",
      "externalAttributes": {
        "property1": {},
        "property2": {}
      },
      "attributes": [
        {
          "nonce": "string",
          "name": "string",
          "color": "string"
        }
      ],
      "remark": "string"
    },
    "isPlannedToLastLocation": true,
    "documents": [
      {
        "associationType": "inline"
      }
    ],
    "actors": [
      {
        "associationType": "inline"
      }
    ],
    "pricingElements": [
      {
        "nonce": "string",
        "name": "string",
        "description": "string",
        "category": {
          "nonce": "string",
          "name": "string",
          "creditCode": "string",
          "debitCode": "string",
          "defaultValue": 0.1,
          "enabled": true
        },
        "amount": {
          "nonce": "string",
          "amount": 0.1,
          "currency": {
            "nonce": "string",
            "name": "string",
            "short": "string",
            "sign": "string",
            "decimalDelimiter": "string",
            "thousandDelimiter": "string",
            "enabled": true
          },
          "taxRate": {
            "nonce": "string",
            "creditCode": "string",
            "debitCode": "string",
            "identifiers": [
              {
                "nonce": "string",
                "name": "string",
                "system": "string",
                "value": "string",
                "expiredAt": "2019-08-24T14:15:22Z"
              }
            ],
            "name": "string",
            "description": "string",
            "jurisdiction": "string",
            "percentage": 0.1,
            "inclusive": true,
            "active": true
          },
          "inclusiveOfTax": true
        }
      }
    ],
    "externalAttributes": {
      "property1": {},
      "property2": {}
    },
    "expectedRevenue": {
      "nonce": "string",
      "amount": 0.1,
      "currency": {
        "nonce": "string",
        "name": "string",
        "short": "string",
        "sign": "string",
        "decimalDelimiter": "string",
        "thousandDelimiter": "string",
        "enabled": true
      },
      "taxRate": {
        "nonce": "string",
        "creditCode": "string",
        "debitCode": "string",
        "identifiers": [
          {
            "nonce": "string",
            "name": "string",
            "system": "string",
            "value": "string",
            "expiredAt": "2019-08-24T14:15:22Z"
          }
        ],
        "name": "string",
        "description": "string",
        "jurisdiction": "string",
        "percentage": 0.1,
        "inclusive": true,
        "active": true
      },
      "inclusiveOfTax": true
    },
    "expectedCost": {
      "nonce": "string",
      "amount": 0.1,
      "currency": {
        "nonce": "string",
        "name": "string",
        "short": "string",
        "sign": "string",
        "decimalDelimiter": "string",
        "thousandDelimiter": "string",
        "enabled": true
      },
      "taxRate": {
        "nonce": "string",
        "creditCode": "string",
        "debitCode": "string",
        "identifiers": [
          {
            "nonce": "string",
            "name": "string",
            "system": "string",
            "value": "string",
            "expiredAt": "2019-08-24T14:15:22Z"
          }
        ],
        "name": "string",
        "description": "string",
        "jurisdiction": "string",
        "percentage": 0.1,
        "inclusive": true,
        "active": true
      },
      "inclusiveOfTax": true
    },
    "combined": true,
    "type": "string",
    "remark": "string",
    "constraints": [
      {
        "nonce": "string",
        "name": "string",
        "enforceability": "enforced",
        "type": "accessConstraint",
        "description": "string"
      }
    ],
    "attributes": [
      {
        "nonce": "string",
        "name": "string",
        "color": "string"
      }
    ]
  }'

Responses

Success

Bodyapplication/json
successboolean
messagestring
codeinteger(int32)
consignmentobject(ConsignmentModel)
Response
application/json
{ "success": true, "message": "string", "code": 0, "consignment": { "id": "string", "nonce": "string", "uuid": "string", "primaryPlatformId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "name": "string", "consignmentNr": "string", "description": "string", "status": "draft", "highValueGoods": true, "goods": [], "combined": true, "consignment": {}, "originalPhysicalSender": {}, "originalLegalSender": {}, "originalPhysicalAddressee": {}, "originalLegalAddressee": {}, "isPlannedToLastLocation": true, "type": "string", "remark": "string", "documents": [], "actors": [], "constraints": [], "pricingElements": [], "attributes": [], "externalAttributes": {}, "expectedRevenue": {}, "expectedCost": {}, "versionNumber": 0 } }

Update consignment

Request

Update a consignment

Headers
Authorizationstringrequired
Bodyapplication/jsonrequired
idstring
noncestring
uuidstring
primaryPlatformIdstring
createdAtstring(date-time)
updatedAtstring(date-time)
namestringrequired

Name of the Consignment. For display purposes and search only.

consignmentNrstring
descriptionstring

General description of consignment in Free text. e.g 20 europallets fruit. Meant for human inspection, not for automating processes.

statusstring
Enum"draft""requested""confirmed""in_transit""completed""cancelled""partially_planned""planned""partially_completed""partially_in_transit"
highValueGoodsboolean
goodsArray of objects(Association)
combinedboolean
consignmentobject(ConsignmentModel)Recursive
originalPhysicalSenderobject(LocationModel)

Object describing a geographic location. A location can either be a point or an area.

originalLegalSenderobject(LocationModel)

Object describing a geographic location. A location can either be a point or an area.

originalPhysicalAddresseeobject(LocationModel)

Object describing a geographic location. A location can either be a point or an area.

originalLegalAddresseeobject(LocationModel)

Object describing a geographic location. A location can either be a point or an area.

isPlannedToLastLocationboolean
typestring

This field can be used to categorize and/or group shipments by type, depending on the needs of a specific logistic process.

remarkstring

Remark concerning the complete consignment, to be printed on the transport document.

documentsArray of objects(Association)
actorsArray of objects(Association)
constraintsArray of objects(ConstraintModel)

In the context of a Consignment, constraints can be used to e.g. define minimum or maximum temperatures for consignments, or date time constraints for delivery.

pricingElementsArray of objects(PricingElementModel)
attributesArray of objects(AttributeModel)
externalAttributesobject
expectedRevenueobject(MoneyModel)
expectedCostobject(MoneyModel)
hasAgreedToPricebooleanwrite-only

Set this value to 'true' if the user has agreed to the pricing of this element. Only needed once the NeedsBillingApproval Exception is thrown

versionNumberinteger(int32)
curl -i -X PUT \
  https://docs.transportial.com/_mock/apis/consignment \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "id": "string",
    "nonce": "string",
    "uuid": "string",
    "primaryPlatformId": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "name": "string",
    "consignmentNr": "string",
    "description": "string",
    "status": "draft",
    "highValueGoods": true,
    "goods": [
      {
        "associationType": "inline"
      }
    ],
    "combined": true,
    "consignment": {},
    "originalPhysicalSender": {
      "id": "string",
      "nonce": "string",
      "uuid": "string",
      "primaryPlatformId": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "type": "warehouse",
      "name": "string",
      "unCode": "string",
      "geoReference": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "type": "addressGeoReference",
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string",
        "hash": "string"
      },
      "administrativeReference": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string"
      },
      "contactDetails": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "iban",
          "value": "string",
          "remarks": "string"
        }
      ],
      "constraints": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "accessConstraint",
          "name": "string",
          "enforceability": "enforced",
          "description": "string"
        }
      ],
      "pricingElements": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "description": "string",
          "category": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "creditCode": "string",
            "debitCode": "string",
            "defaultValue": 0.1,
            "enabled": true
          },
          "amount": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "amount": 0.1,
            "currency": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "name": "string",
              "short": "string",
              "sign": "string",
              "decimalDelimiter": "string",
              "thousandDelimiter": "string",
              "enabled": true
            },
            "taxRate": {
              "nonce": "string",
              "creditCode": "string",
              "debitCode": "string",
              "identifiers": [
                {}
              ],
              "name": "string",
              "description": "string",
              "jurisdiction": "string",
              "percentage": 0.1,
              "inclusive": true,
              "active": true
            },
            "inclusiveOfTax": true
          }
        }
      ],
      "remark": "string",
      "hash": "string",
      "externalAttributes": {
        "property1": {},
        "property2": {}
      }
    },
    "originalLegalSender": {
      "id": "string",
      "nonce": "string",
      "uuid": "string",
      "primaryPlatformId": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "type": "warehouse",
      "name": "string",
      "unCode": "string",
      "geoReference": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "type": "addressGeoReference",
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string",
        "hash": "string"
      },
      "administrativeReference": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string"
      },
      "contactDetails": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "iban",
          "value": "string",
          "remarks": "string"
        }
      ],
      "constraints": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "accessConstraint",
          "name": "string",
          "enforceability": "enforced",
          "description": "string"
        }
      ],
      "pricingElements": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "description": "string",
          "category": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "creditCode": "string",
            "debitCode": "string",
            "defaultValue": 0.1,
            "enabled": true
          },
          "amount": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "amount": 0.1,
            "currency": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "name": "string",
              "short": "string",
              "sign": "string",
              "decimalDelimiter": "string",
              "thousandDelimiter": "string",
              "enabled": true
            },
            "taxRate": {
              "nonce": "string",
              "creditCode": "string",
              "debitCode": "string",
              "identifiers": [
                {}
              ],
              "name": "string",
              "description": "string",
              "jurisdiction": "string",
              "percentage": 0.1,
              "inclusive": true,
              "active": true
            },
            "inclusiveOfTax": true
          }
        }
      ],
      "remark": "string",
      "hash": "string",
      "externalAttributes": {
        "property1": {},
        "property2": {}
      }
    },
    "originalPhysicalAddressee": {
      "id": "string",
      "nonce": "string",
      "uuid": "string",
      "primaryPlatformId": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "type": "warehouse",
      "name": "string",
      "unCode": "string",
      "geoReference": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "type": "addressGeoReference",
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string",
        "hash": "string"
      },
      "administrativeReference": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string"
      },
      "contactDetails": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "iban",
          "value": "string",
          "remarks": "string"
        }
      ],
      "constraints": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "accessConstraint",
          "name": "string",
          "enforceability": "enforced",
          "description": "string"
        }
      ],
      "pricingElements": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "description": "string",
          "category": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "creditCode": "string",
            "debitCode": "string",
            "defaultValue": 0.1,
            "enabled": true
          },
          "amount": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "amount": 0.1,
            "currency": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "name": "string",
              "short": "string",
              "sign": "string",
              "decimalDelimiter": "string",
              "thousandDelimiter": "string",
              "enabled": true
            },
            "taxRate": {
              "nonce": "string",
              "creditCode": "string",
              "debitCode": "string",
              "identifiers": [
                {}
              ],
              "name": "string",
              "description": "string",
              "jurisdiction": "string",
              "percentage": 0.1,
              "inclusive": true,
              "active": true
            },
            "inclusiveOfTax": true
          }
        }
      ],
      "remark": "string",
      "hash": "string",
      "externalAttributes": {
        "property1": {},
        "property2": {}
      }
    },
    "originalLegalAddressee": {
      "id": "string",
      "nonce": "string",
      "uuid": "string",
      "primaryPlatformId": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "type": "warehouse",
      "name": "string",
      "unCode": "string",
      "geoReference": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "type": "addressGeoReference",
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string",
        "hash": "string"
      },
      "administrativeReference": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string"
      },
      "contactDetails": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "iban",
          "value": "string",
          "remarks": "string"
        }
      ],
      "constraints": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "accessConstraint",
          "name": "string",
          "enforceability": "enforced",
          "description": "string"
        }
      ],
      "pricingElements": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "description": "string",
          "category": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "creditCode": "string",
            "debitCode": "string",
            "defaultValue": 0.1,
            "enabled": true
          },
          "amount": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "amount": 0.1,
            "currency": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "name": "string",
              "short": "string",
              "sign": "string",
              "decimalDelimiter": "string",
              "thousandDelimiter": "string",
              "enabled": true
            },
            "taxRate": {
              "nonce": "string",
              "creditCode": "string",
              "debitCode": "string",
              "identifiers": [
                {}
              ],
              "name": "string",
              "description": "string",
              "jurisdiction": "string",
              "percentage": 0.1,
              "inclusive": true,
              "active": true
            },
            "inclusiveOfTax": true
          }
        }
      ],
      "remark": "string",
      "hash": "string",
      "externalAttributes": {
        "property1": {},
        "property2": {}
      }
    },
    "isPlannedToLastLocation": true,
    "type": "string",
    "remark": "string",
    "documents": [
      {
        "associationType": "inline"
      }
    ],
    "actors": [
      {
        "associationType": "inline"
      }
    ],
    "constraints": [
      {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "type": "accessConstraint",
        "name": "string",
        "enforceability": "enforced",
        "description": "string"
      }
    ],
    "pricingElements": [
      {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "name": "string",
        "description": "string",
        "category": {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "creditCode": "string",
          "debitCode": "string",
          "defaultValue": 0.1,
          "enabled": true
        },
        "amount": {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "amount": 0.1,
          "currency": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "short": "string",
            "sign": "string",
            "decimalDelimiter": "string",
            "thousandDelimiter": "string",
            "enabled": true
          },
          "taxRate": {
            "nonce": "string",
            "creditCode": "string",
            "debitCode": "string",
            "identifiers": [
              {
                "nonce": "string",
                "name": "string",
                "system": "string",
                "value": "string",
                "expiredAt": "2019-08-24T14:15:22Z"
              }
            ],
            "name": "string",
            "description": "string",
            "jurisdiction": "string",
            "percentage": 0.1,
            "inclusive": true,
            "active": true
          },
          "inclusiveOfTax": true
        }
      }
    ],
    "attributes": [
      {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "name": "string",
        "color": "string"
      }
    ],
    "externalAttributes": {
      "property1": {},
      "property2": {}
    },
    "expectedRevenue": {
      "id": "string",
      "nonce": "string",
      "uuid": "string",
      "primaryPlatformId": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "amount": 0.1,
      "currency": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "name": "string",
        "short": "string",
        "sign": "string",
        "decimalDelimiter": "string",
        "thousandDelimiter": "string",
        "enabled": true
      },
      "taxRate": {
        "nonce": "string",
        "creditCode": "string",
        "debitCode": "string",
        "identifiers": [
          {
            "nonce": "string",
            "name": "string",
            "system": "string",
            "value": "string",
            "expiredAt": "2019-08-24T14:15:22Z"
          }
        ],
        "name": "string",
        "description": "string",
        "jurisdiction": "string",
        "percentage": 0.1,
        "inclusive": true,
        "active": true
      },
      "inclusiveOfTax": true
    },
    "expectedCost": {
      "id": "string",
      "nonce": "string",
      "uuid": "string",
      "primaryPlatformId": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "amount": 0.1,
      "currency": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "name": "string",
        "short": "string",
        "sign": "string",
        "decimalDelimiter": "string",
        "thousandDelimiter": "string",
        "enabled": true
      },
      "taxRate": {
        "nonce": "string",
        "creditCode": "string",
        "debitCode": "string",
        "identifiers": [
          {
            "nonce": "string",
            "name": "string",
            "system": "string",
            "value": "string",
            "expiredAt": "2019-08-24T14:15:22Z"
          }
        ],
        "name": "string",
        "description": "string",
        "jurisdiction": "string",
        "percentage": 0.1,
        "inclusive": true,
        "active": true
      },
      "inclusiveOfTax": true
    },
    "hasAgreedToPrice": true,
    "versionNumber": 0
  }'

Responses

Success

Bodyapplication/json
successboolean
messagestring
codeinteger(int32)
consignmentobject(ConsignmentModel)
Response
application/json
{ "success": true, "message": "string", "code": 0, "consignment": { "id": "string", "nonce": "string", "uuid": "string", "primaryPlatformId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "name": "string", "consignmentNr": "string", "description": "string", "status": "draft", "highValueGoods": true, "goods": [], "combined": true, "consignment": {}, "originalPhysicalSender": {}, "originalLegalSender": {}, "originalPhysicalAddressee": {}, "originalLegalAddressee": {}, "isPlannedToLastLocation": true, "type": "string", "remark": "string", "documents": [], "actors": [], "constraints": [], "pricingElements": [], "attributes": [], "externalAttributes": {}, "expectedRevenue": {}, "expectedCost": {}, "versionNumber": 0 } }

Create consignment

Request

Create a new consignment

Headers
Authorizationstringrequired
Bodyapplication/jsonrequired
noncestring
namestringrequired

Name of the Consignment. For display purposes and search only.

consignmentNrstring
descriptionstring
statusstring
Enum"draft""requested""confirmed""in_transit""completed""cancelled""partially_planned""planned""partially_completed""partially_in_transit"
goodsArray of objects(Association)
combinedboolean
consignmentobject(ConsignmentModel)
originalPhysicalSenderobject(LocationModel)

Object describing a geographic location. A location can either be a point or an area.

originalLegalSenderobject(LocationModel)

Object describing a geographic location. A location can either be a point or an area.

originalPhysicalAddresseeobject(LocationModel)

Object describing a geographic location. A location can either be a point or an area.

originalLegalAddresseeobject(LocationModel)

Object describing a geographic location. A location can either be a point or an area.

isPlannedToLastLocationboolean
typestring

This field can be used to categorize and/or group shipments by type, depending on the needs of a specific logistic process.

remarkstring
documentsArray of objects(Association)
actorsArray of objects(Association)
constraintsArray of objects(ConstraintModel)

In the context of a Consignment, constraints can be used to e.g. define minimum or maximum temperatures for consignments, or date time constraints for delivery.

pricingElementsArray of objects(PricingElementModel)
attributesArray of objects(AttributeModel)
externalAttributesobject
expectedRevenueobject(MoneyModel)
expectedCostobject(MoneyModel)
hasAgreedToPricebooleanwrite-only

Set this value to 'true' if the user has agreed to the pricing of this element. Only needed once the NeedsBillingApproval Exception is thrown

versionNumberinteger(int32)
curl -i -X POST \
  https://docs.transportial.com/_mock/apis/consignment \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "nonce": "string",
    "name": "string",
    "consignmentNr": "string",
    "description": "string",
    "status": "draft",
    "goods": [
      {
        "associationType": "inline"
      }
    ],
    "combined": true,
    "consignment": {
      "id": "string",
      "nonce": "string",
      "uuid": "string",
      "primaryPlatformId": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "name": "string",
      "consignmentNr": "string",
      "description": "string",
      "status": "draft",
      "highValueGoods": true,
      "goods": [
        {
          "associationType": "inline"
        }
      ],
      "combined": true,
      "consignment": {},
      "originalPhysicalSender": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "type": "warehouse",
        "name": "string",
        "unCode": "string",
        "geoReference": {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "addressGeoReference",
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postalCode": "string",
          "city": "string",
          "country": "string",
          "hash": "string"
        },
        "administrativeReference": {
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postalCode": "string",
          "city": "string",
          "country": "string"
        },
        "contactDetails": [
          {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "type": "iban",
            "value": "string",
            "remarks": "string"
          }
        ],
        "constraints": [
          {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "type": "accessConstraint",
            "name": "string",
            "enforceability": "enforced",
            "description": "string"
          }
        ],
        "pricingElements": [
          {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "description": "string",
            "category": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "name": "string",
              "creditCode": "string",
              "debitCode": "string",
              "defaultValue": 0.1,
              "enabled": true
            },
            "amount": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "amount": 0.1,
              "currency": {
                "id": "string",
                "nonce": "string",
                "uuid": "string",
                "primaryPlatformId": "string",
                "createdAt": "2019-08-24T14:15:22Z",
                "updatedAt": "2019-08-24T14:15:22Z",
                "name": "string",
                "short": "string",
                "sign": "string",
                "decimalDelimiter": "string",
                "thousandDelimiter": "string",
                "enabled": true
              },
              "taxRate": {
                "nonce": "string",
                "creditCode": "string",
                "debitCode": "string",
                "identifiers": [
                  null
                ],
                "name": "string",
                "description": "string",
                "jurisdiction": "string",
                "percentage": 0.1,
                "inclusive": true,
                "active": true
              },
              "inclusiveOfTax": true
            }
          }
        ],
        "remark": "string",
        "hash": "string",
        "externalAttributes": {
          "property1": {},
          "property2": {}
        }
      },
      "originalLegalSender": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "type": "warehouse",
        "name": "string",
        "unCode": "string",
        "geoReference": {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "addressGeoReference",
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postalCode": "string",
          "city": "string",
          "country": "string",
          "hash": "string"
        },
        "administrativeReference": {
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postalCode": "string",
          "city": "string",
          "country": "string"
        },
        "contactDetails": [
          {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "type": "iban",
            "value": "string",
            "remarks": "string"
          }
        ],
        "constraints": [
          {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "type": "accessConstraint",
            "name": "string",
            "enforceability": "enforced",
            "description": "string"
          }
        ],
        "pricingElements": [
          {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "description": "string",
            "category": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "name": "string",
              "creditCode": "string",
              "debitCode": "string",
              "defaultValue": 0.1,
              "enabled": true
            },
            "amount": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "amount": 0.1,
              "currency": {
                "id": "string",
                "nonce": "string",
                "uuid": "string",
                "primaryPlatformId": "string",
                "createdAt": "2019-08-24T14:15:22Z",
                "updatedAt": "2019-08-24T14:15:22Z",
                "name": "string",
                "short": "string",
                "sign": "string",
                "decimalDelimiter": "string",
                "thousandDelimiter": "string",
                "enabled": true
              },
              "taxRate": {
                "nonce": "string",
                "creditCode": "string",
                "debitCode": "string",
                "identifiers": [
                  null
                ],
                "name": "string",
                "description": "string",
                "jurisdiction": "string",
                "percentage": 0.1,
                "inclusive": true,
                "active": true
              },
              "inclusiveOfTax": true
            }
          }
        ],
        "remark": "string",
        "hash": "string",
        "externalAttributes": {
          "property1": {},
          "property2": {}
        }
      },
      "originalPhysicalAddressee": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "type": "warehouse",
        "name": "string",
        "unCode": "string",
        "geoReference": {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "addressGeoReference",
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postalCode": "string",
          "city": "string",
          "country": "string",
          "hash": "string"
        },
        "administrativeReference": {
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postalCode": "string",
          "city": "string",
          "country": "string"
        },
        "contactDetails": [
          {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "type": "iban",
            "value": "string",
            "remarks": "string"
          }
        ],
        "constraints": [
          {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "type": "accessConstraint",
            "name": "string",
            "enforceability": "enforced",
            "description": "string"
          }
        ],
        "pricingElements": [
          {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "description": "string",
            "category": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "name": "string",
              "creditCode": "string",
              "debitCode": "string",
              "defaultValue": 0.1,
              "enabled": true
            },
            "amount": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "amount": 0.1,
              "currency": {
                "id": "string",
                "nonce": "string",
                "uuid": "string",
                "primaryPlatformId": "string",
                "createdAt": "2019-08-24T14:15:22Z",
                "updatedAt": "2019-08-24T14:15:22Z",
                "name": "string",
                "short": "string",
                "sign": "string",
                "decimalDelimiter": "string",
                "thousandDelimiter": "string",
                "enabled": true
              },
              "taxRate": {
                "nonce": "string",
                "creditCode": "string",
                "debitCode": "string",
                "identifiers": [
                  null
                ],
                "name": "string",
                "description": "string",
                "jurisdiction": "string",
                "percentage": 0.1,
                "inclusive": true,
                "active": true
              },
              "inclusiveOfTax": true
            }
          }
        ],
        "remark": "string",
        "hash": "string",
        "externalAttributes": {
          "property1": {},
          "property2": {}
        }
      },
      "originalLegalAddressee": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "type": "warehouse",
        "name": "string",
        "unCode": "string",
        "geoReference": {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "addressGeoReference",
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postalCode": "string",
          "city": "string",
          "country": "string",
          "hash": "string"
        },
        "administrativeReference": {
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postalCode": "string",
          "city": "string",
          "country": "string"
        },
        "contactDetails": [
          {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "type": "iban",
            "value": "string",
            "remarks": "string"
          }
        ],
        "constraints": [
          {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "type": "accessConstraint",
            "name": "string",
            "enforceability": "enforced",
            "description": "string"
          }
        ],
        "pricingElements": [
          {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "description": "string",
            "category": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "name": "string",
              "creditCode": "string",
              "debitCode": "string",
              "defaultValue": 0.1,
              "enabled": true
            },
            "amount": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "amount": 0.1,
              "currency": {
                "id": "string",
                "nonce": "string",
                "uuid": "string",
                "primaryPlatformId": "string",
                "createdAt": "2019-08-24T14:15:22Z",
                "updatedAt": "2019-08-24T14:15:22Z",
                "name": "string",
                "short": "string",
                "sign": "string",
                "decimalDelimiter": "string",
                "thousandDelimiter": "string",
                "enabled": true
              },
              "taxRate": {
                "nonce": "string",
                "creditCode": "string",
                "debitCode": "string",
                "identifiers": [
                  null
                ],
                "name": "string",
                "description": "string",
                "jurisdiction": "string",
                "percentage": 0.1,
                "inclusive": true,
                "active": true
              },
              "inclusiveOfTax": true
            }
          }
        ],
        "remark": "string",
        "hash": "string",
        "externalAttributes": {
          "property1": {},
          "property2": {}
        }
      },
      "isPlannedToLastLocation": true,
      "type": "string",
      "remark": "string",
      "documents": [
        {
          "associationType": "inline"
        }
      ],
      "actors": [
        {
          "associationType": "inline"
        }
      ],
      "constraints": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "accessConstraint",
          "name": "string",
          "enforceability": "enforced",
          "description": "string"
        }
      ],
      "pricingElements": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "description": "string",
          "category": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "creditCode": "string",
            "debitCode": "string",
            "defaultValue": 0.1,
            "enabled": true
          },
          "amount": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "amount": 0.1,
            "currency": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "name": "string",
              "short": "string",
              "sign": "string",
              "decimalDelimiter": "string",
              "thousandDelimiter": "string",
              "enabled": true
            },
            "taxRate": {
              "nonce": "string",
              "creditCode": "string",
              "debitCode": "string",
              "identifiers": [
                {}
              ],
              "name": "string",
              "description": "string",
              "jurisdiction": "string",
              "percentage": 0.1,
              "inclusive": true,
              "active": true
            },
            "inclusiveOfTax": true
          }
        }
      ],
      "attributes": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "color": "string"
        }
      ],
      "externalAttributes": {
        "property1": {},
        "property2": {}
      },
      "expectedRevenue": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "amount": 0.1,
        "currency": {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "short": "string",
          "sign": "string",
          "decimalDelimiter": "string",
          "thousandDelimiter": "string",
          "enabled": true
        },
        "taxRate": {
          "nonce": "string",
          "creditCode": "string",
          "debitCode": "string",
          "identifiers": [
            {
              "nonce": "string",
              "name": "string",
              "system": "string",
              "value": "string",
              "expiredAt": "2019-08-24T14:15:22Z"
            }
          ],
          "name": "string",
          "description": "string",
          "jurisdiction": "string",
          "percentage": 0.1,
          "inclusive": true,
          "active": true
        },
        "inclusiveOfTax": true
      },
      "expectedCost": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "amount": 0.1,
        "currency": {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "short": "string",
          "sign": "string",
          "decimalDelimiter": "string",
          "thousandDelimiter": "string",
          "enabled": true
        },
        "taxRate": {
          "nonce": "string",
          "creditCode": "string",
          "debitCode": "string",
          "identifiers": [
            {
              "nonce": "string",
              "name": "string",
              "system": "string",
              "value": "string",
              "expiredAt": "2019-08-24T14:15:22Z"
            }
          ],
          "name": "string",
          "description": "string",
          "jurisdiction": "string",
          "percentage": 0.1,
          "inclusive": true,
          "active": true
        },
        "inclusiveOfTax": true
      },
      "hasAgreedToPrice": true,
      "versionNumber": 0
    },
    "originalPhysicalSender": {
      "id": "string",
      "nonce": "string",
      "uuid": "string",
      "primaryPlatformId": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "type": "warehouse",
      "name": "string",
      "unCode": "string",
      "geoReference": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "type": "addressGeoReference",
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string",
        "hash": "string"
      },
      "administrativeReference": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string"
      },
      "contactDetails": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "iban",
          "value": "string",
          "remarks": "string"
        }
      ],
      "constraints": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "accessConstraint",
          "name": "string",
          "enforceability": "enforced",
          "description": "string"
        }
      ],
      "pricingElements": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "description": "string",
          "category": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "creditCode": "string",
            "debitCode": "string",
            "defaultValue": 0.1,
            "enabled": true
          },
          "amount": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "amount": 0.1,
            "currency": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "name": "string",
              "short": "string",
              "sign": "string",
              "decimalDelimiter": "string",
              "thousandDelimiter": "string",
              "enabled": true
            },
            "taxRate": {
              "nonce": "string",
              "creditCode": "string",
              "debitCode": "string",
              "identifiers": [
                {}
              ],
              "name": "string",
              "description": "string",
              "jurisdiction": "string",
              "percentage": 0.1,
              "inclusive": true,
              "active": true
            },
            "inclusiveOfTax": true
          }
        }
      ],
      "remark": "string",
      "hash": "string",
      "externalAttributes": {
        "property1": {},
        "property2": {}
      }
    },
    "originalLegalSender": {
      "id": "string",
      "nonce": "string",
      "uuid": "string",
      "primaryPlatformId": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "type": "warehouse",
      "name": "string",
      "unCode": "string",
      "geoReference": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "type": "addressGeoReference",
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string",
        "hash": "string"
      },
      "administrativeReference": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string"
      },
      "contactDetails": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "iban",
          "value": "string",
          "remarks": "string"
        }
      ],
      "constraints": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "accessConstraint",
          "name": "string",
          "enforceability": "enforced",
          "description": "string"
        }
      ],
      "pricingElements": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "description": "string",
          "category": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "creditCode": "string",
            "debitCode": "string",
            "defaultValue": 0.1,
            "enabled": true
          },
          "amount": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "amount": 0.1,
            "currency": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "name": "string",
              "short": "string",
              "sign": "string",
              "decimalDelimiter": "string",
              "thousandDelimiter": "string",
              "enabled": true
            },
            "taxRate": {
              "nonce": "string",
              "creditCode": "string",
              "debitCode": "string",
              "identifiers": [
                {}
              ],
              "name": "string",
              "description": "string",
              "jurisdiction": "string",
              "percentage": 0.1,
              "inclusive": true,
              "active": true
            },
            "inclusiveOfTax": true
          }
        }
      ],
      "remark": "string",
      "hash": "string",
      "externalAttributes": {
        "property1": {},
        "property2": {}
      }
    },
    "originalPhysicalAddressee": {
      "id": "string",
      "nonce": "string",
      "uuid": "string",
      "primaryPlatformId": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "type": "warehouse",
      "name": "string",
      "unCode": "string",
      "geoReference": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "type": "addressGeoReference",
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string",
        "hash": "string"
      },
      "administrativeReference": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string"
      },
      "contactDetails": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "iban",
          "value": "string",
          "remarks": "string"
        }
      ],
      "constraints": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "accessConstraint",
          "name": "string",
          "enforceability": "enforced",
          "description": "string"
        }
      ],
      "pricingElements": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "description": "string",
          "category": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "creditCode": "string",
            "debitCode": "string",
            "defaultValue": 0.1,
            "enabled": true
          },
          "amount": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "amount": 0.1,
            "currency": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "name": "string",
              "short": "string",
              "sign": "string",
              "decimalDelimiter": "string",
              "thousandDelimiter": "string",
              "enabled": true
            },
            "taxRate": {
              "nonce": "string",
              "creditCode": "string",
              "debitCode": "string",
              "identifiers": [
                {}
              ],
              "name": "string",
              "description": "string",
              "jurisdiction": "string",
              "percentage": 0.1,
              "inclusive": true,
              "active": true
            },
            "inclusiveOfTax": true
          }
        }
      ],
      "remark": "string",
      "hash": "string",
      "externalAttributes": {
        "property1": {},
        "property2": {}
      }
    },
    "originalLegalAddressee": {
      "id": "string",
      "nonce": "string",
      "uuid": "string",
      "primaryPlatformId": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "type": "warehouse",
      "name": "string",
      "unCode": "string",
      "geoReference": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "type": "addressGeoReference",
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string",
        "hash": "string"
      },
      "administrativeReference": {
        "name": "string",
        "street": "string",
        "houseNumber": "string",
        "houseNumberAddition": "string",
        "postalCode": "string",
        "city": "string",
        "country": "string"
      },
      "contactDetails": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "iban",
          "value": "string",
          "remarks": "string"
        }
      ],
      "constraints": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "type": "accessConstraint",
          "name": "string",
          "enforceability": "enforced",
          "description": "string"
        }
      ],
      "pricingElements": [
        {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "description": "string",
          "category": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "creditCode": "string",
            "debitCode": "string",
            "defaultValue": 0.1,
            "enabled": true
          },
          "amount": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "amount": 0.1,
            "currency": {
              "id": "string",
              "nonce": "string",
              "uuid": "string",
              "primaryPlatformId": "string",
              "createdAt": "2019-08-24T14:15:22Z",
              "updatedAt": "2019-08-24T14:15:22Z",
              "name": "string",
              "short": "string",
              "sign": "string",
              "decimalDelimiter": "string",
              "thousandDelimiter": "string",
              "enabled": true
            },
            "taxRate": {
              "nonce": "string",
              "creditCode": "string",
              "debitCode": "string",
              "identifiers": [
                {}
              ],
              "name": "string",
              "description": "string",
              "jurisdiction": "string",
              "percentage": 0.1,
              "inclusive": true,
              "active": true
            },
            "inclusiveOfTax": true
          }
        }
      ],
      "remark": "string",
      "hash": "string",
      "externalAttributes": {
        "property1": {},
        "property2": {}
      }
    },
    "isPlannedToLastLocation": true,
    "type": "string",
    "remark": "string",
    "documents": [
      {
        "associationType": "inline"
      }
    ],
    "actors": [
      {
        "associationType": "inline"
      }
    ],
    "constraints": [
      {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "type": "accessConstraint",
        "name": "string",
        "enforceability": "enforced",
        "description": "string"
      }
    ],
    "pricingElements": [
      {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "name": "string",
        "description": "string",
        "category": {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "name": "string",
          "creditCode": "string",
          "debitCode": "string",
          "defaultValue": 0.1,
          "enabled": true
        },
        "amount": {
          "id": "string",
          "nonce": "string",
          "uuid": "string",
          "primaryPlatformId": "string",
          "createdAt": "2019-08-24T14:15:22Z",
          "updatedAt": "2019-08-24T14:15:22Z",
          "amount": 0.1,
          "currency": {
            "id": "string",
            "nonce": "string",
            "uuid": "string",
            "primaryPlatformId": "string",
            "createdAt": "2019-08-24T14:15:22Z",
            "updatedAt": "2019-08-24T14:15:22Z",
            "name": "string",
            "short": "string",
            "sign": "string",
            "decimalDelimiter": "string",
            "thousandDelimiter": "string",
            "enabled": true
          },
          "taxRate": {
            "nonce": "string",
            "creditCode": "string",
            "debitCode": "string",
            "identifiers": [
              {
                "nonce": "string",
                "name": "string",
                "system": "string",
                "value": "string",
                "expiredAt": "2019-08-24T14:15:22Z"
              }
            ],
            "name": "string",
            "description": "string",
            "jurisdiction": "string",
            "percentage": 0.1,
            "inclusive": true,
            "active": true
          },
          "inclusiveOfTax": true
        }
      }
    ],
    "attributes": [
      {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "name": "string",
        "color": "string"
      }
    ],
    "externalAttributes": {
      "property1": {},
      "property2": {}
    },
    "expectedRevenue": {
      "id": "string",
      "nonce": "string",
      "uuid": "string",
      "primaryPlatformId": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "amount": 0.1,
      "currency": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "name": "string",
        "short": "string",
        "sign": "string",
        "decimalDelimiter": "string",
        "thousandDelimiter": "string",
        "enabled": true
      },
      "taxRate": {
        "nonce": "string",
        "creditCode": "string",
        "debitCode": "string",
        "identifiers": [
          {
            "nonce": "string",
            "name": "string",
            "system": "string",
            "value": "string",
            "expiredAt": "2019-08-24T14:15:22Z"
          }
        ],
        "name": "string",
        "description": "string",
        "jurisdiction": "string",
        "percentage": 0.1,
        "inclusive": true,
        "active": true
      },
      "inclusiveOfTax": true
    },
    "expectedCost": {
      "id": "string",
      "nonce": "string",
      "uuid": "string",
      "primaryPlatformId": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "amount": 0.1,
      "currency": {
        "id": "string",
        "nonce": "string",
        "uuid": "string",
        "primaryPlatformId": "string",
        "createdAt": "2019-08-24T14:15:22Z",
        "updatedAt": "2019-08-24T14:15:22Z",
        "name": "string",
        "short": "string",
        "sign": "string",
        "decimalDelimiter": "string",
        "thousandDelimiter": "string",
        "enabled": true
      },
      "taxRate": {
        "nonce": "string",
        "creditCode": "string",
        "debitCode": "string",
        "identifiers": [
          {
            "nonce": "string",
            "name": "string",
            "system": "string",
            "value": "string",
            "expiredAt": "2019-08-24T14:15:22Z"
          }
        ],
        "name": "string",
        "description": "string",
        "jurisdiction": "string",
        "percentage": 0.1,
        "inclusive": true,
        "active": true
      },
      "inclusiveOfTax": true
    },
    "hasAgreedToPrice": true,
    "versionNumber": 0
  }'

Responses

Success

Bodyapplication/json
successboolean
messagestring
codeinteger(int32)
consignmentobject(ConsignmentModel)
Response
application/json
{ "success": true, "message": "string", "code": 0, "consignment": { "id": "string", "nonce": "string", "uuid": "string", "primaryPlatformId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "name": "string", "consignmentNr": "string", "description": "string", "status": "draft", "highValueGoods": true, "goods": [], "combined": true, "consignment": {}, "originalPhysicalSender": {}, "originalLegalSender": {}, "originalPhysicalAddressee": {}, "originalLegalAddressee": {}, "isPlannedToLastLocation": true, "type": "string", "remark": "string", "documents": [], "actors": [], "constraints": [], "pricingElements": [], "attributes": [], "externalAttributes": {}, "expectedRevenue": {}, "expectedCost": {}, "versionNumber": 0 } }

Get consignment

Request

Get a consignment on id

Path
idstringrequired
Headers
Authorizationstringrequired
curl -i -X GET \
  'https://docs.transportial.com/_mock/apis/consignment/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Success

Bodyapplication/json
successboolean
messagestring
codeinteger(int32)
consignmentobject(ConsignmentModel)
Response
application/json
{ "success": true, "message": "string", "code": 0, "consignment": { "id": "string", "nonce": "string", "uuid": "string", "primaryPlatformId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "name": "string", "consignmentNr": "string", "description": "string", "status": "draft", "highValueGoods": true, "goods": [], "combined": true, "consignment": {}, "originalPhysicalSender": {}, "originalLegalSender": {}, "originalPhysicalAddressee": {}, "originalLegalAddressee": {}, "isPlannedToLastLocation": true, "type": "string", "remark": "string", "documents": [], "actors": [], "constraints": [], "pricingElements": [], "attributes": [], "externalAttributes": {}, "expectedRevenue": {}, "expectedCost": {}, "versionNumber": 0 } }

Delete consignment

Request

Delete a consignment

Path
idstringrequired
Headers
Authorizationstringrequired
curl -i -X DELETE \
  'https://docs.transportial.com/_mock/apis/consignment/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Success

Bodyapplication/json
successboolean
messagestring
codeinteger(int32)
consignmentobject(ConsignmentModel)
Response
application/json
{ "success": true, "message": "string", "code": 0, "consignment": { "id": "string", "nonce": "string", "uuid": "string", "primaryPlatformId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "name": "string", "consignmentNr": "string", "description": "string", "status": "draft", "highValueGoods": true, "goods": [], "combined": true, "consignment": {}, "originalPhysicalSender": {}, "originalLegalSender": {}, "originalPhysicalAddressee": {}, "originalLegalAddressee": {}, "isPlannedToLastLocation": true, "type": "string", "remark": "string", "documents": [], "actors": [], "constraints": [], "pricingElements": [], "attributes": [], "externalAttributes": {}, "expectedRevenue": {}, "expectedCost": {}, "versionNumber": 0 } }

Get consignments

Request

Get list of consignments

Path
offsetinteger(int64)required
amountinteger(int64)required
Headers
Authorizationstringrequired
curl -i -X GET \
  'https://docs.transportial.com/_mock/apis/consignments/{offset}/{amount}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Success

Bodyapplication/json
successboolean
messagestring
codeinteger(int32)
totalResultsinteger(int32)
consignmentsArray of objects(ConsignmentModel)
Response
application/json
{ "success": true, "message": "string", "code": 0, "totalResults": 0, "consignments": [ {} ] }

Search consignments

Request

Search list of consignments by query and multiple parameters

Path
offsetinteger(int64)required
amountinteger(int64)required
Headers
Authorizationstringrequired
curl -i -X POST \
  'https://docs.transportial.com/_mock/apis/consignments/{offset}/{amount}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Success

Bodyapplication/json
successboolean
messagestring
codeinteger(int32)
totalResultsinteger(int32)
consignmentsArray of objects(ConsignmentModel)
Response
application/json
{ "success": true, "message": "string", "code": 0, "totalResults": 0, "consignments": [ {} ] }

Get consignment

Request

Get a consignment on id

Path
idstringrequired
Headers
Authorizationstringrequired
curl -i -X GET \
  'https://docs.transportial.com/_mock/apis/consignment:extended/{id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Success

Bodyapplication/json
successboolean
messagestring
codeinteger(int32)
consignmentobject(ConsignmentModel)
Response
application/json
{ "success": true, "message": "string", "code": 0, "consignment": { "id": "string", "nonce": "string", "uuid": "string", "primaryPlatformId": "string", "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z", "name": "string", "consignmentNr": "string", "description": "string", "status": "draft", "highValueGoods": true, "goods": [], "combined": true, "consignment": {}, "originalPhysicalSender": {}, "originalLegalSender": {}, "originalPhysicalAddressee": {}, "originalLegalAddressee": {}, "isPlannedToLastLocation": true, "type": "string", "remark": "string", "documents": [], "actors": [], "constraints": [], "pricingElements": [], "attributes": [], "externalAttributes": {}, "expectedRevenue": {}, "expectedCost": {}, "versionNumber": 0 } }

Split consignments

Request

Previously combined order -> split into unique consignments

Headers
Authorizationstringrequired
Bodyapplication/jsonrequired
consignmentobject(Consignment)
relatedConsignmentsArray of objects(Consignment)
curl -i -X POST \
  https://docs.transportial.com/_mock/apis/consignments/split \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "consignment": {
      "nonce": "string",
      "versionNumber": 0,
      "hasAgreedToPrice": true,
      "name": "string",
      "consignmentNr": "string",
      "description": "string",
      "status": "draft",
      "highValueGoods": true,
      "goods": [
        {
          "associationType": "inline"
        }
      ],
      "consignment": {},
      "originalPhysicalSender": {
        "nonce": "string",
        "type": "warehouse",
        "name": "string",
        "unCode": "string",
        "geoReference": {
          "nonce": "string",
          "type": "addressGeoReference",
          "hash": "string",
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postCode": "string",
          "city": "string",
          "country": "string"
        },
        "administrativeReference": {
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postalCode": "string",
          "city": "string",
          "country": "string"
        },
        "contactPersons": [
          {
            "nonce": "string",
            "firstName": "string",
            "lastName": "string",
            "position": "string",
            "email": "string",
            "phone": "string"
          }
        ],
        "hash": "string",
        "externalAttributes": {
          "property1": {},
          "property2": {}
        },
        "attributes": [
          {
            "nonce": "string",
            "name": "string",
            "color": "string"
          }
        ],
        "remark": "string"
      },
      "originalLegalSender": {
        "nonce": "string",
        "type": "warehouse",
        "name": "string",
        "unCode": "string",
        "geoReference": {
          "nonce": "string",
          "type": "addressGeoReference",
          "hash": "string",
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postCode": "string",
          "city": "string",
          "country": "string"
        },
        "administrativeReference": {
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postalCode": "string",
          "city": "string",
          "country": "string"
        },
        "contactPersons": [
          {
            "nonce": "string",
            "firstName": "string",
            "lastName": "string",
            "position": "string",
            "email": "string",
            "phone": "string"
          }
        ],
        "hash": "string",
        "externalAttributes": {
          "property1": {},
          "property2": {}
        },
        "attributes": [
          {
            "nonce": "string",
            "name": "string",
            "color": "string"
          }
        ],
        "remark": "string"
      },
      "originalPhysicalAddressee": {
        "nonce": "string",
        "type": "warehouse",
        "name": "string",
        "unCode": "string",
        "geoReference": {
          "nonce": "string",
          "type": "addressGeoReference",
          "hash": "string",
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postCode": "string",
          "city": "string",
          "country": "string"
        },
        "administrativeReference": {
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postalCode": "string",
          "city": "string",
          "country": "string"
        },
        "contactPersons": [
          {
            "nonce": "string",
            "firstName": "string",
            "lastName": "string",
            "position": "string",
            "email": "string",
            "phone": "string"
          }
        ],
        "hash": "string",
        "externalAttributes": {
          "property1": {},
          "property2": {}
        },
        "attributes": [
          {
            "nonce": "string",
            "name": "string",
            "color": "string"
          }
        ],
        "remark": "string"
      },
      "originalLegalAddressee": {
        "nonce": "string",
        "type": "warehouse",
        "name": "string",
        "unCode": "string",
        "geoReference": {
          "nonce": "string",
          "type": "addressGeoReference",
          "hash": "string",
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postCode": "string",
          "city": "string",
          "country": "string"
        },
        "administrativeReference": {
          "name": "string",
          "street": "string",
          "houseNumber": "string",
          "houseNumberAddition": "string",
          "postalCode": "string",
          "city": "string",
          "country": "string"
        },
        "contactPersons": [
          {
            "nonce": "string",
            "firstName": "string",
            "lastName": "string",
            "position": "string",
            "email": "string",
            "phone": "string"
          }
        ],
        "hash": "string",
        "externalAttributes": {
          "property1": {},
          "property2": {}
        },
        "attributes": [
          {
            "nonce": "string",
            "name": "string",
            "color": "string"
          }
        ],
        "remark": "string"
      },
      "isPlannedToLastLocation": true,
      "documents": [
        {
          "associationType": "inline"
        }
      ],
      "actors": [
        {
          "associationType": "inline"
        }
      ],
      "pricingElements": [
        {
          "nonce": "string",
          "name": "string",
          "description": "string",
          "category": {
            "nonce": "string",
            "name": "string",
            "creditCode": "string",
            "debitCode": "string",
            "defaultValue": 0.1,
            "enabled": true
          },
          "amount": {
            "nonce": "string",
            "amount": 0.1,
            "currency": {
              "nonce": "string",
              "name": "string",
              "short": "string",
              "sign": "string",
              "decimalDelimiter": "string",
              "thousandDelimiter": "string",
              "enabled": true
            },
            "taxRate": {
              "nonce": "string",
              "creditCode": "string",
              "debitCode": "string",
              "identifiers": [
                {}
              ],
              "name": "string",
              "description": "string",
              "jurisdiction": "string",
              "percentage": 0.1,
              "inclusive": true,
              "active": true
            },
            "inclusiveOfTax": true
          }
        }
      ],
      "externalAttributes": {
        "property1": {},
        "property2": {}
      },
      "expectedRevenue": {
        "nonce": "string",
        "amount": 0.1,
        "currency": {
          "nonce": "string",
          "name": "string",
          "short": "string",
          "sign": "string",
          "decimalDelimiter": "string",
          "thousandDelimiter": "string",
          "enabled": true
        },
        "taxRate": {
          "nonce": "string",
          "creditCode": "string",
          "debitCode": "string",
          "identifiers": [
            {
              "nonce": "string",
              "name": "string",
              "system": "string",
              "value": "string",
              "expiredAt": "2019-08-24T14:15:22Z"
            }
          ],
          "name": "string",
          "description": "string",
          "jurisdiction": "string",
          "percentage": 0.1,
          "inclusive": true,
          "active": true
        },
        "inclusiveOfTax": true
      },
      "expectedCost": {
        "nonce": "string",
        "amount": 0.1,
        "currency": {
          "nonce": "string",
          "name": "string",
          "short": "string",
          "sign": "string",
          "decimalDelimiter": "string",
          "thousandDelimiter": "string",
          "enabled": true
        },
        "taxRate": {
          "nonce": "string",
          "creditCode": "string",
          "debitCode": "string",
          "identifiers": [
            {
              "nonce": "string",
              "name": "string",
              "system": "string",
              "value": "string",
              "expiredAt": "2019-08-24T14:15:22Z"
            }
          ],
          "name": "string",
          "description": "string",
          "jurisdiction": "string",
          "percentage": 0.1,
          "inclusive": true,
          "active": true
        },
        "inclusiveOfTax": true
      },
      "combined": true,
      "type": "string",
      "remark": "string",
      "constraints": [
        {
          "nonce": "string",
          "name": "string",
          "enforceability": "enforced",
          "type": "accessConstraint",
          "description": "string"
        }
      ],
      "attributes": [
        {
          "nonce": "string",
          "name": "string",
          "color": "string"
        }
      ]
    },
    "relatedConsignments": [
      {
        "nonce": "string",
        "versionNumber": 0,
        "hasAgreedToPrice": true,
        "name": "string",
        "consignmentNr": "string",
        "description": "string",
        "status": "draft",
        "highValueGoods": true,
        "goods": [
          {
            "associationType": "inline"
          }
        ],
        "consignment": {},
        "originalPhysicalSender": {
          "nonce": "string",
          "type": "warehouse",
          "name": "string",
          "unCode": "string",
          "geoReference": {
            "nonce": "string",
            "type": "addressGeoReference",
            "hash": "string",
            "name": "string",
            "street": "string",
            "houseNumber": "string",
            "houseNumberAddition": "string",
            "postCode": "string",
            "city": "string",
            "country": "string"
          },
          "administrativeReference": {
            "name": "string",
            "street": "string",
            "houseNumber": "string",
            "houseNumberAddition": "string",
            "postalCode": "string",
            "city": "string",
            "country": "string"
          },
          "contactPersons": [
            {
              "nonce": "string",
              "firstName": "string",
              "lastName": "string",
              "position": "string",
              "email": "string",
              "phone": "string"
            }
          ],
          "hash": "string",
          "externalAttributes": {
            "property1": {},
            "property2": {}
          },
          "attributes": [
            {
              "nonce": "string",
              "name": "string",
              "color": "string"
            }
          ],
          "remark": "string"
        },
        "originalLegalSender": {
          "nonce": "string",
          "type": "warehouse",
          "name": "string",
          "unCode": "string",
          "geoReference": {
            "nonce": "string",
            "type": "addressGeoReference",
            "hash": "string",
            "name": "string",
            "street": "string",
            "houseNumber": "string",
            "houseNumberAddition": "string",
            "postCode": "string",
            "city": "string",
            "country": "string"
          },
          "administrativeReference": {
            "name": "string",
            "street": "string",
            "houseNumber": "string",
            "houseNumberAddition": "string",
            "postalCode": "string",
            "city": "string",
            "country": "string"
          },
          "contactPersons": [
            {
              "nonce": "string",
              "firstName": "string",
              "lastName": "string",
              "position": "string",
              "email": "string",
              "phone": "string"
            }
          ],
          "hash": "string",
          "externalAttributes": {
            "property1": {},
            "property2": {}
          },
          "attributes": [
            {
              "nonce": "string",
              "name": "string",
              "color": "string"
            }
          ],
          "remark": "string"
        },
        "originalPhysicalAddressee": {
          "nonce": "string",
          "type": "warehouse",
          "name": "string",
          "unCode": "string",
          "geoReference": {
            "nonce": "string",
            "type": "addressGeoReference",
            "hash": "string",
            "name": "string",
            "street": "string",
            "houseNumber": "string",
            "houseNumberAddition": "string",
            "postCode": "string",
            "city": "string",
            "country": "string"
          },
          "administrativeReference": {
            "name": "string",
            "street": "string",
            "houseNumber": "string",
            "houseNumberAddition": "string",
            "postalCode": "string",
            "city": "string",
            "country": "string"
          },
          "contactPersons": [
            {
              "nonce": "string",
              "firstName": "string",
              "lastName": "string",
              "position": "string",
              "email": "string",
              "phone": "string"
            }
          ],
          "hash": "string",
          "externalAttributes": {
            "property1": {},
            "property2": {}
          },
          "attributes": [
            {
              "nonce": "string",
              "name": "string",
              "color": "string"
            }
          ],
          "remark": "string"
        },
        "originalLegalAddressee": {
          "nonce": "string",
          "type": "warehouse",
          "name": "string",
          "unCode": "string",
          "geoReference": {
            "nonce": "string",
            "type": "addressGeoReference",
            "hash": "string",
            "name": "string",
            "street": "string",
            "houseNumber": "string",
            "houseNumberAddition": "string",
            "postCode": "string",
            "city": "string",
            "country": "string"
          },
          "administrativeReference": {
            "name": "string",
            "street": "string",
            "houseNumber": "string",
            "houseNumberAddition": "string",
            "postalCode": "string",
            "city": "string",
            "country": "string"
          },
          "contactPersons": [
            {
              "nonce": "string",
              "firstName": "string",
              "lastName": "string",
              "position": "string",
              "email": "string",
              "phone": "string"
            }
          ],
          "hash": "string",
          "externalAttributes": {
            "property1": {},
            "property2": {}
          },
          "attributes": [
            {
              "nonce": "string",
              "name": "string",
              "color": "string"
            }
          ],
          "remark": "string"
        },
        "isPlannedToLastLocation": true,
        "documents": [
          {
            "associationType": "inline"
          }
        ],
        "actors": [
          {
            "associationType": "inline"
          }
        ],
        "pricingElements": [
          {
            "nonce": "string",
            "name": "string",
            "description": "string",
            "category": {
              "nonce": "string",
              "name": "string",
              "creditCode": "string",
              "debitCode": "string",
              "defaultValue": 0.1,
              "enabled": true
            },
            "amount": {
              "nonce": "string",
              "amount": 0.1,
              "currency": {
                "nonce": "string",
                "name": "string",
                "short": "string",
                "sign": "string",
                "decimalDelimiter": "string",
                "thousandDelimiter": "string",
                "enabled": true
              },
              "taxRate": {
                "nonce": "string",
                "creditCode": "string",
                "debitCode": "string",
                "identifiers": [
                  null
                ],
                "name": "string",
                "description": "string",
                "jurisdiction": "string",
                "percentage": 0.1,
                "inclusive": true,
                "active": true
              },
              "inclusiveOfTax": true
            }
          }
        ],
        "externalAttributes": {
          "property1": {},
          "property2": {}
        },
        "expectedRevenue": {
          "nonce": "string",
          "amount": 0.1,
          "currency": {
            "nonce": "string",
            "name": "string",
            "short": "string",
            "sign": "string",
            "decimalDelimiter": "string",
            "thousandDelimiter": "string",
            "enabled": true
          },
          "taxRate": {
            "nonce": "string",
            "creditCode": "string",
            "debitCode": "string",
            "identifiers": [
              {
                "nonce": "string",
                "name": "string",
                "system": "string",
                "value": "string",
                "expiredAt": "2019-08-24T14:15:22Z"
              }
            ],
            "name": "string",
            "description": "string",
            "jurisdiction": "string",
            "percentage": 0.1,
            "inclusive": true,
            "active": true
          },
          "inclusiveOfTax": true
        },
        "expectedCost": {
          "nonce": "string",
          "amount": 0.1,
          "currency": {
            "nonce": "string",
            "name": "string",
            "short": "string",
            "sign": "string",
            "decimalDelimiter": "string",
            "thousandDelimiter": "string",
            "enabled": true
          },
          "taxRate": {
            "nonce": "string",
            "creditCode": "string",
            "debitCode": "string",
            "identifiers": [
              {
                "nonce": "string",
                "name": "string",
                "system": "string",
                "value": "string",
                "expiredAt": "2019-08-24T14:15:22Z"
              }
            ],
            "name": "string",
            "description": "string",
            "jurisdiction": "string",
            "percentage": 0.1,
            "inclusive": true,
            "active": true
          },
          "inclusiveOfTax": true
        },
        "combined": true,
        "type": "string",
        "remark": "string",
        "constraints": [
          {
            "nonce": "string",
            "name": "string",
            "enforceability": "enforced",
            "type": "accessConstraint",
            "description": "string"
          }
        ],
        "attributes": [
          {
            "nonce": "string",
            "name": "string",
            "color": "string"
          }
        ]
      }
    ]
  }'

Responses

Success

Bodyapplication/json
successboolean
messagestring
codeinteger(int32)
totalResultsinteger(int32)
consignmentsArray of objects(ConsignmentModel)
Response
application/json
{ "success": true, "message": "string", "code": 0, "totalResults": 0, "consignments": [ {} ] }

Constraint

Constraints can be stacked and constrain different activities in their context

Operations

Contract

Contracts

Operations

Damage

Object describing a geographic damage. A damage can either be a point or an area.

Operations

Document

Documents are the base entities to handle all types of external data files and the references to them

Operations

Event

Events - like actions - model dynamic entities that couple various static entities at a certain moment in time. Events are used for either real-time updates, or updates on earlier provided data. Notice that in both event types these are updates on earlier provided data, whereas actions are usually used together with the entities they dynamically couple.

Operations

Feedback

Feedbacks

Operations

File

File management. Upload, retrieve and download files. Categorized by it's purpose.

Operations

Fleet

Fleets can be stacked and constrain different activities in their context

Operations

General

General reference data sets like Languages, Currencies etc. and functions

Operations

Goods

Goods are the items to be transported as part of a consignment. Goods can be divided into two sub-types of goods, depending on the use case and the level of detail. Goods either consists of items, describing the actual goods to be transported. Or a transport equipment, which is equipment used to carry the actual goods to be transported. Transport equipment is (usually) a means to an end, not something that needs to be transported on itself, such as pallets.

Operations

TransportEquipment

TransportEquipment are the items to be transported as part of a consignment. TransportEquipment can be divided into two sub-types of transportEquipment, depending on the use case and the level of detail. TransportEquipment either consists of items, describing the actual transportEquipment to be transported. Or a transport equipment, which is equipment used to carry the actual transportEquipment to be transported. Transport equipment is (usually) a means to an end, not something that needs to be transported on itself, such as pallets.

Operations

Insights

All the insights you need can be gathered from these endpoints

Operations

Integration

An Integration is the connection for 2 systems. An integration can be configured and enabled through this object. It can also configure the entire connection or it can be pre-configured.

Operations

Lane

A lane contains a location and status of a todo task.

Operations

ToDo

A lane contains a location and status of a todo task.

Operations

Location

Object describing a geographic location. A location can either be a point or an area.

Operations

Mail

Mails can be stacked and constrain different activities in their context

Operations

Management

The management overviews

Operations

MessageAutomation

Message-Automations are communication automation connectors that can use events

Operations

Notification

Notification endpoint to notify people, groups or the entire user base of things they might want to know or need to know

Operations

Platform

Platforms can be stacked and constrain different activities in their context

Operations

SAML

SAML Configuration for Single-SignOn(SSO) establishment between Service-Provider(SP) and Identity-Provider(IDP)

Operations

Pricing

A pricing models the path going from one location to at least one other location.

Operations

Route

A route models the path going from one location to at least one other location.

Operations

Routing

Everything routing: meaning the routes from A-B supporting multiple modalities

Operations

ScheduleRoute

A scheduleRoute is a device that is able to measure a quantity in a certain unit, such as measuring the speed in km/h.

Operations

Sensor

A sensor is a device that is able to measure a quantity in a certain unit, such as measuring the speed in km/h.

Operations

Support

Support tickets are there to diagnose issues in the software or help users if they have a question

Operations

Tachograph

Tachograph methods

Operations

Team

A Team is a group of Vehicle's. Groups can be used to reference a list of vehicles without having to select each individual one.

Operations

Tender

Tenders can be stacked and constrain different activities in their context

Operations

Terminal

Terminals

Operations

ToDoComment

Object describing a geographic toDoComment. A toDoComment can either be a point or an area.

Operations

TQL

TQL stands for "Transportial Query Language". It's used to be able to run any query from a given JSON request

Operations

TransportOrder

The TransportOrder is the top-level entity to model a group of related consignments that might be transported separately, but need to be administered together.

Operations

Trip

A Trip is an aggregate entity that combines various entities to model visiting various locations, potentially doing one or multiple actions on each location, such as loading or unloading consignments. It is optionally coupled to a Vehicle that is/was driving this trip.

Operations

Type

Types

Operations

User

Users related to the platform and all actions required

Operations

User roles

The permissions grouped by a "Role", that can be assigned to a user

Operations

Settings

The user settings for the system

Operations

BoardComputer

A Boardcomputer is a device that tracks properties of a Vehicle. Values received from a BoardComputer can be the current location, speed, temperatues etc.

Operations

Vehicle

A Vehicle is a means to transport consignments from one location to potentially multiple other locations. There are various types of vehicles, each with their own unique properties like size, dimensions, fuel type and means of transport (by air, on land, over sea).

Operations

VehicleGroup

A VehicleGroup is a group of Vehicle's. Groups can be used to reference a list of vehicles without having to select each individual one.

Operations

Widget

Widgets can be stacked and constrain different activities in their context

Operations