---
title: "Create a new transport inquiry and notify transport department."
method: POST
path: "/transports"
tags: ["transports"]
---

# Create a new transport inquiry and notify transport department.

`POST /transports`

ADD ENDPOINT DESCRIPTION HERE

## Request body

- TransportPost
  - `shipTo` AddressData, required
    - `name` string — Name of the person. <br>Usually this is the first and last name.
    - `company` string — Name of the company.
    - `phone` string — Phone number. <br>The phone number is usually optional.
    - `email` string — E-Mail address.
    - `zip` string — ZIP Code. <br>The ZIP code is optional for some countries, but required for most.
    - `city` string, required — City. <br>The city should always be specified.
    - `state` string — State. <br>This is not required for most countries, but required in some (eg: United States).
    - `countryIso2` string, required — Country. <br>The country should always be specified.
    - `street` string, required — Street (or Address Line 1). <br>This field should always be specified.
    - `street2` string — Street (or Address Line 2). <br>This field is optional.
  - `sellerId` integer, required — Seller ID.
  - `pickupDate` string, date — Optional estimated date of departure
  - `deliveryDate` string, date — Optional estimated date of arrival
  - `shipFrom` AddressData, required
    - `name` string — Name of the person. <br>Usually this is the first and last name.
    - `company` string — Name of the company.
    - `phone` string — Phone number. <br>The phone number is usually optional.
    - `email` string — E-Mail address.
    - `zip` string — ZIP Code. <br>The ZIP code is optional for some countries, but required for most.
    - `city` string, required — City. <br>The city should always be specified.
    - `state` string — State. <br>This is not required for most countries, but required in some (eg: United States).
    - `countryIso2` string, required — Country. <br>The country should always be specified.
    - `street` string, required — Street (or Address Line 1). <br>This field should always be specified.
    - `street2` string — Street (or Address Line 2). <br>This field is optional.
  - `positions` TransportPositionData[], required — List of the positions for transportation.
    - `deliveryType` 'CONTAINER' | 'CARTON' | 'EUPAL' | 'EWPAL', required — Delivery type.
    - `containerType` string — Type of the container. <br>Required only if delivery type is CONTAINER
    - `quantity` integer, required — Number of units of the position.
    - `unitWeightKg` number, required — Weight in kg per unit.
    - `unitLengthM` number, required — Length in meters per unit.
    - `unitWidthM` number, required — Width in meters per unit.
    - `unitHeightM` number, required — Height in meters per unit.
    - `contentDescription` string, required — Name or short description of a position.

## Response `200`

successful operation

- TransportPostResult
  - `status` string
  - `transportId` integer

---

[API](https://skmtc.net/writechoiceorg/apis/connector.md) · [All operations](https://skmtc.net/writechoiceorg/apis/connector/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/writechoiceorg/connector/revisions/7ce09a4b2a4e/schema)
