For the complete documentation index, see llms.txt. This page is also available as Markdown.

Shipments from EU to EU

Shipment creation example within EU (EU-EU)

post

Shipment creation example within EU (EU-EU)

Body
Other propertiesanyOptional
Responses
200

Successful shipment creation response

application/json
Other propertiesanyOptional
post/shipments
POST /shipments HTTP/1.1
Content-Type: application/json
Accept: */*
Content-Length: 1104

{
  "status": "ReadyToShip",
  "clientOrder": "",
  "note": "",
  "payerType": "Sender",
  "payerContractNumber": "GNPP-00000002",
  "payerCompanyTin": null,
  "payerCompanyName": "",
  "invoice": {
    "incoterm": "DAP",
    "currencyCode": "EUR",
    "exportReasonId": 1,
    "exportReasonNote": "",
    "exportReasonNoteEng": "",
    "totalCost": 10000,
    "totalCostEur": 2341,
    "totalCostUsd": 2693,
    "items": [
      {
        "id": "cf757e80-6fcf-497b-a21d-ae0220171c5d",
        "name": "Diamond testers",
        "measurementCode": "pieces",
        "hsCode": "90278930",
        "amount": 100,
        "cost": 100,
        "costUsd": "26.93",
        "costEur": "23.41",
        "producerAndModel": "",
        "material": "",
        "madeInCountryCode": null
      }
    ]
  },
  "services": [],
  "parcels": [
    {
      "cargoCategory": "pallet",
      "number": null,
      "parcelDescription": "test",
      "insuranceCost": 10000,
      "rowNumber": 1,
      "untied": false,
      "width": 600,
      "length": 800,
      "height": 1700,
      "actualWeight": 250000,
      "volumetricWeight": 204000
    }
  ],
  "sender": {
    "companyTin": "38130410",
    "companyName": "NP GLOBAL LLC",
    "phone": "48111111111",
    "email": "example@test.com",
    "name": "Sender Test",
    "countryCode": "PL"
  },
  "recipient": {
    "companyTin": "",
    "companyName": "",
    "phone": "491234567890",
    "email": "example@test.com",
    "name": "Recipient Test",
    "countryCode": "DE"
  }
}
200

Successful shipment creation response

{
  "ANY_ADDITIONAL_PROPERTY": "anything"
}

Last updated