Public API Doc
  • Introduction
  • Authentification
  • E-CUSTOMS SERVICES
    • Product Infos Generator (A.I)
      • Harmonized System Code
      • United Nations Code
      • Dimensions & Weight
      • Carbon footprint
      • Eco Codes and Taxes
      • World Product Pricing
    • HSCode services
      • Link (HSCode > HSCode)
      • Nomenclature
      • RTC / BTI
      • Check
      • A.I Customs Code Control
    • Documents import services
      • Landed Cost
      • Taxes Invoice
      • Export invoice
      • H7 Declaration (Akanea)
    • Duty & Taxes Calculator
      • Landed Cost Calculator
        • For E-Commerce
        • For Marketplace
        • For Shipping Comparator
        • For International Carrier
        • Using Product's HS Code
        • Using Product's SKU
        • Using Product's description
        • Using Product's barcode
      • Reverse Landed Cost Calculator
      • Locals taxes Calculator
        • Using Product's HSCode
        • Using Product's SKU
        • Using Product's description
        • Using Product's barcode
    • Rates Data Generator
      • Duties
      • Locals Taxes (VAT, GST, ...)
      • Specials Taxes (OM, OMR, ...)
      • SalesTaxes (USA)
    • Export Docs Generator
      • Exports invoice
      • Rectified Export invoice
      • Credit Note
      • Tax invoice
      • Exports Marketplace invoice
      • Postal customs declarations
      • Lithium Battery
      • Taxes refund or discount
      • Certificat of origin
      • EORI Subscription
    • Shipping Infos Generator
      • World Shipping Pricing
      • Carbon Footprint
  • E-COMMERCE MANAGEMENT
    • Customers (CRM)
    • Products (PIM)
    • Orders (OMS)
    • Tax Account
  • FREE API CONSUMPTION
    • Duty & Taxes Free Calculation
  • Questions & Answers
  • Go to the Web App
  • Go to the Website
Powered by GitBook
On this page
  • Add an order
  • Request body
  • Json Request Format
  • JSON Examples - Request & Response
  • Video explainer
  • Update an order
  • Get order informations
  • Get orders list
  • Delete an order
  1. E-COMMERCE MANAGEMENT

Orders (OMS)

Order Management System

Add an order

POST https://api.transiteo.io/v1/customer/orders

This endpoint allows you to create an order

Headers

Name
Type
Description

Content-type

string

application/json

Authorization

string

"your id-token"

Request body

{
  "order_id": string,
  "invoice_id": string,
  "url": url,
  "order_date_hour": number,
  "customer_firstname": string,
  "customer_lastname": string,
  "customer_address": string,
  "customer_zipcode": string,
  "customer_city": string,
  "customer_country": string,
  "buyer_firstname": string,
  "buyer_lastname": string,
  "buyer_address": string",
  "buyer_zipcode": string,
  "buyer_city": string,
  "buyer_country": string,
  "agent_firstname": string,
  "agent_lastname": string,
  "agent_address": string,
  "agent_zipcode": string,
  "agent_city": string,
  "agent_country": string,
  "order_payment_type": string,
  "order_payment_date": number,
  "exporting_carrier": string,
  "departure_country": string,
  "arrival_country": string,
  "products": [
    {"sku": string, "quantity": number, "unit_price": number, "unit_price_currency": string}
  ],
  "shipping_carrier": string,
  "category_of_item": string,
  "payment_type": string,
  "amount_products": number,
  "amount_shipping": number,
  "amount_duty": number,
  "amount_vat": number,
  "amount_specialtaxes": number,
  "incoterm": string,
  "currency": string,
  "order_statut": string
}

Json Request Format

"order_id"

You need to fill the field with ... Examples : Type : string Required : yes

"invoice_id"

You need to fill the field with ... Examples : Type : string Required : yes

"url"

You need to fill the field with ... Examples : Type : string Required : yes

"order_date_hour"

You need to fill the field with ... Examples : Type : string Required : yes

"customer_firstname"

You need to fill the field with ... Examples : Type : string Required : yes

"customer_lastname"

You need to fill the field with ... Examples : Type : string Required : yes

"customer_address"

You need to fill the field with ... Examples : Type : string Required : yes

"customer_zipcode"

You need to fill the field with ... Examples : Type : string Required : yes

"customer_city"

You need to fill the field with ... Examples : Type : string Required : yes

"customer_country"

You need to fill the field with ... Examples : Type : string Required : yes

"buyer_firstname"

You need to fill the field with ... Examples : Type : string Required : yes

"buyer_lastname"

You need to fill the field with ... Examples : Type : string Required : yes

"buyer_address"

You need to fill the field with ... Examples : Type : string Required : yes

"buyer_zipcode"

You need to fill the field with ... Examples : Type : string Required : yes

"buyer_city"

You need to fill the field with ... Examples : Type : string Required : yes

"buyer_country"

You need to fill the field with ... Examples : Type : string Required : yes

"agent_firstname"

You need to fill the field with ... Examples : Type : string Required : yes

"agent_lastname"

You need to fill the field with ... Examples : Type : string Required : yes

"agent_adress"

You need to fill the field with ... Examples : Type : string Required : yes

"agent_zipcode"

You need to fill the field with ... Examples : Type : string Required : yes

"agent_city"

You need to fill the field with ... Examples : Type : string Required : yes

"agent_country"

You need to fill the field with ... Examples : Type : string Required : yes

"order_payment_type"

You need to fill the field with ... Examples : Type : string Required : yes

"order_payment_date"

You need to fill the field with ... Examples : Type : string Required : yes

"exporting_carrier"

You need to fill the field with ... Examples : Type : string Required : yes

"departure_country"

You need to fill the field with ... Examples : Type : string Required : yes

"arrival_country"

You need to fill the field with ... Examples : Type : string Required : yes

"products" / "sku"

You need to fill the field with ... Examples : Type : string Required : yes

"products" / "quantity"

You need to fill the field with ... Examples : Type : string Required : yes

"products" / "unit_price"

You need to fill the field with ... Examples : Type : string Required : yes

"products" / "unit_price_currency"

You need to fill the field with ... Examples : Type : string Required : yes

"shipping_carrier"

You need to fill the field with ... Examples : Type : string Required : yes

"category_of_item"

You need to fill the field with ... Examples : Type : string Required : yes

"payment_type"

You need to fill the field with ... Examples : Type : string Required : yes

"amount_products"

You need to fill the field with ... Examples : Type : string Required : yes

"amount_shipping"

You need to fill the field with ... Examples : Type : string Required : yes

"amount_duty"

You need to fill the field with ... Examples : Type : string Required : yes

"amount_vat"

You need to fill the field with ... Examples : Type : string Required : yes

"amount_specialtaxes"

You need to fill the field with ... Examples : Type : string Required : yes

"incoterm"

You need to fill the field with ... Examples : Type : string Required : yes

"currency"

You need to fill the field with ... Examples : Type : string Required : yes

"order_statut"

You need to fill the field with ... Examples : Type : string Required : yes

JSON Examples - Request & Response

Video explainer

in progress...

Update an order

PUT https://api.transiteo.io/v1/customer/orders/{Base64}

This endpoint allows you to update an order

Headers

Name
Type
Description

Content-type

string

application/json

Authorization

string

"your id_token"

Get order informations

GET https://api.transiteo.io/v1/customer/orders/{Base64}

This endpoint allows you to get informations of a specific order

Headers

Name
Type
Description

Content-type

string

application/json

Authorization

string

"your id_token"

Get orders list

GET https://api.transiteo.io/v1/customer/orders

This endpoint allows you to get informations of all orders created.

Headers

Name
Type
Description

Content-type

string

application/json

Authorization

string

"your id_token"

Delete an order

DELETE https://api.transiteo.io/v1/customer/orders/{Base64}

This endpoint allows you to delete a specific order

Headers

Name
Type
Description

Content-type

string

application/json

Authorization

string

"your id_token"

PreviousProducts (PIM)NextTax Account

Last updated 3 years ago

It exist many possibilities. Please with our support team.

book a call