Create booking
curl --request POST \
--url https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"quoteId": "quote-123",
"flightId": "QR001-20240101",
"pieces": 10,
"weight": 500,
"commodity": "GEN",
"shipper": {
"name": "Example Corp",
"address": "123 Main St, City, Country",
"contact": "contact@example.com"
},
"consignee": {
"name": "Example Corp",
"address": "123 Main St, City, Country",
"contact": "contact@example.com"
},
"awb": {
"prefix": "157",
"number": "157000001"
},
"routing": [
{
"from": "LAX",
"to": "DOH",
"carrier": "QR",
"flightNumber": "QR001",
"date": "2024-01-01"
},
{
"from": "DOH",
"to": "DXB",
"carrier": "QR",
"flightNumber": "QR123",
"date": "2024-01-02"
}
],
"grossWeightKg": 500.5,
"chargeableWeightKg": 520,
"dimensionsCm": [
{
"l": 120.5,
"w": 80,
"h": 60,
"pieces": 5
},
{
"l": 100,
"w": 70,
"h": 50,
"pieces": 5
}
],
"volume": 2.5,
"shc": [
"PER"
]
}
'import requests
url = "https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings"
payload = {
"quoteId": "quote-123",
"flightId": "QR001-20240101",
"pieces": 10,
"weight": 500,
"commodity": "GEN",
"shipper": {
"name": "Example Corp",
"address": "123 Main St, City, Country",
"contact": "contact@example.com"
},
"consignee": {
"name": "Example Corp",
"address": "123 Main St, City, Country",
"contact": "contact@example.com"
},
"awb": {
"prefix": "157",
"number": "157000001"
},
"routing": [
{
"from": "LAX",
"to": "DOH",
"carrier": "QR",
"flightNumber": "QR001",
"date": "2024-01-01"
},
{
"from": "DOH",
"to": "DXB",
"carrier": "QR",
"flightNumber": "QR123",
"date": "2024-01-02"
}
],
"grossWeightKg": 500.5,
"chargeableWeightKg": 520,
"dimensionsCm": [
{
"l": 120.5,
"w": 80,
"h": 60,
"pieces": 5
},
{
"l": 100,
"w": 70,
"h": 50,
"pieces": 5
}
],
"volume": 2.5,
"shc": ["PER"]
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
quoteId: 'quote-123',
flightId: 'QR001-20240101',
pieces: 10,
weight: 500,
commodity: 'GEN',
shipper: {
name: 'Example Corp',
address: '123 Main St, City, Country',
contact: 'contact@example.com'
},
consignee: {
name: 'Example Corp',
address: '123 Main St, City, Country',
contact: 'contact@example.com'
},
awb: {prefix: '157', number: '157000001'},
routing: [
{
from: 'LAX',
to: 'DOH',
carrier: 'QR',
flightNumber: 'QR001',
date: '2024-01-01'
},
{
from: 'DOH',
to: 'DXB',
carrier: 'QR',
flightNumber: 'QR123',
date: '2024-01-02'
}
],
grossWeightKg: 500.5,
chargeableWeightKg: 520,
dimensionsCm: [{l: 120.5, w: 80, h: 60, pieces: 5}, {l: 100, w: 70, h: 50, pieces: 5}],
volume: 2.5,
shc: ['PER']
})
};
fetch('https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'quoteId' => 'quote-123',
'flightId' => 'QR001-20240101',
'pieces' => 10,
'weight' => 500,
'commodity' => 'GEN',
'shipper' => [
'name' => 'Example Corp',
'address' => '123 Main St, City, Country',
'contact' => 'contact@example.com'
],
'consignee' => [
'name' => 'Example Corp',
'address' => '123 Main St, City, Country',
'contact' => 'contact@example.com'
],
'awb' => [
'prefix' => '157',
'number' => '157000001'
],
'routing' => [
[
'from' => 'LAX',
'to' => 'DOH',
'carrier' => 'QR',
'flightNumber' => 'QR001',
'date' => '2024-01-01'
],
[
'from' => 'DOH',
'to' => 'DXB',
'carrier' => 'QR',
'flightNumber' => 'QR123',
'date' => '2024-01-02'
]
],
'grossWeightKg' => 500.5,
'chargeableWeightKg' => 520,
'dimensionsCm' => [
[
'l' => 120.5,
'w' => 80,
'h' => 60,
'pieces' => 5
],
[
'l' => 100,
'w' => 70,
'h' => 50,
'pieces' => 5
]
],
'volume' => 2.5,
'shc' => [
'PER'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings"
payload := strings.NewReader("{\n \"quoteId\": \"quote-123\",\n \"flightId\": \"QR001-20240101\",\n \"pieces\": 10,\n \"weight\": 500,\n \"commodity\": \"GEN\",\n \"shipper\": {\n \"name\": \"Example Corp\",\n \"address\": \"123 Main St, City, Country\",\n \"contact\": \"contact@example.com\"\n },\n \"consignee\": {\n \"name\": \"Example Corp\",\n \"address\": \"123 Main St, City, Country\",\n \"contact\": \"contact@example.com\"\n },\n \"awb\": {\n \"prefix\": \"157\",\n \"number\": \"157000001\"\n },\n \"routing\": [\n {\n \"from\": \"LAX\",\n \"to\": \"DOH\",\n \"carrier\": \"QR\",\n \"flightNumber\": \"QR001\",\n \"date\": \"2024-01-01\"\n },\n {\n \"from\": \"DOH\",\n \"to\": \"DXB\",\n \"carrier\": \"QR\",\n \"flightNumber\": \"QR123\",\n \"date\": \"2024-01-02\"\n }\n ],\n \"grossWeightKg\": 500.5,\n \"chargeableWeightKg\": 520,\n \"dimensionsCm\": [\n {\n \"l\": 120.5,\n \"w\": 80,\n \"h\": 60,\n \"pieces\": 5\n },\n {\n \"l\": 100,\n \"w\": 70,\n \"h\": 50,\n \"pieces\": 5\n }\n ],\n \"volume\": 2.5,\n \"shc\": [\n \"PER\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"quoteId\": \"quote-123\",\n \"flightId\": \"QR001-20240101\",\n \"pieces\": 10,\n \"weight\": 500,\n \"commodity\": \"GEN\",\n \"shipper\": {\n \"name\": \"Example Corp\",\n \"address\": \"123 Main St, City, Country\",\n \"contact\": \"contact@example.com\"\n },\n \"consignee\": {\n \"name\": \"Example Corp\",\n \"address\": \"123 Main St, City, Country\",\n \"contact\": \"contact@example.com\"\n },\n \"awb\": {\n \"prefix\": \"157\",\n \"number\": \"157000001\"\n },\n \"routing\": [\n {\n \"from\": \"LAX\",\n \"to\": \"DOH\",\n \"carrier\": \"QR\",\n \"flightNumber\": \"QR001\",\n \"date\": \"2024-01-01\"\n },\n {\n \"from\": \"DOH\",\n \"to\": \"DXB\",\n \"carrier\": \"QR\",\n \"flightNumber\": \"QR123\",\n \"date\": \"2024-01-02\"\n }\n ],\n \"grossWeightKg\": 500.5,\n \"chargeableWeightKg\": 520,\n \"dimensionsCm\": [\n {\n \"l\": 120.5,\n \"w\": 80,\n \"h\": 60,\n \"pieces\": 5\n },\n {\n \"l\": 100,\n \"w\": 70,\n \"h\": 50,\n \"pieces\": 5\n }\n ],\n \"volume\": 2.5,\n \"shc\": [\n \"PER\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"quoteId\": \"quote-123\",\n \"flightId\": \"QR001-20240101\",\n \"pieces\": 10,\n \"weight\": 500,\n \"commodity\": \"GEN\",\n \"shipper\": {\n \"name\": \"Example Corp\",\n \"address\": \"123 Main St, City, Country\",\n \"contact\": \"contact@example.com\"\n },\n \"consignee\": {\n \"name\": \"Example Corp\",\n \"address\": \"123 Main St, City, Country\",\n \"contact\": \"contact@example.com\"\n },\n \"awb\": {\n \"prefix\": \"157\",\n \"number\": \"157000001\"\n },\n \"routing\": [\n {\n \"from\": \"LAX\",\n \"to\": \"DOH\",\n \"carrier\": \"QR\",\n \"flightNumber\": \"QR001\",\n \"date\": \"2024-01-01\"\n },\n {\n \"from\": \"DOH\",\n \"to\": \"DXB\",\n \"carrier\": \"QR\",\n \"flightNumber\": \"QR123\",\n \"date\": \"2024-01-02\"\n }\n ],\n \"grossWeightKg\": 500.5,\n \"chargeableWeightKg\": 520,\n \"dimensionsCm\": [\n {\n \"l\": 120.5,\n \"w\": 80,\n \"h\": 60,\n \"pieces\": 5\n },\n {\n \"l\": 100,\n \"w\": 70,\n \"h\": 50,\n \"pieces\": 5\n }\n ],\n \"volume\": 2.5,\n \"shc\": [\n \"PER\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "booking-123",
"quoteId": "quote-123",
"status": "pending",
"flightId": "QR001-20240101",
"awbNumber": "15712345678",
"createdAt": "2024-01-01T10:00:00Z"
}Bookings
Create Booking
Create booking with FFR fields and reference to quote
POST
/
api
/
bookings
Create booking
curl --request POST \
--url https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"quoteId": "quote-123",
"flightId": "QR001-20240101",
"pieces": 10,
"weight": 500,
"commodity": "GEN",
"shipper": {
"name": "Example Corp",
"address": "123 Main St, City, Country",
"contact": "contact@example.com"
},
"consignee": {
"name": "Example Corp",
"address": "123 Main St, City, Country",
"contact": "contact@example.com"
},
"awb": {
"prefix": "157",
"number": "157000001"
},
"routing": [
{
"from": "LAX",
"to": "DOH",
"carrier": "QR",
"flightNumber": "QR001",
"date": "2024-01-01"
},
{
"from": "DOH",
"to": "DXB",
"carrier": "QR",
"flightNumber": "QR123",
"date": "2024-01-02"
}
],
"grossWeightKg": 500.5,
"chargeableWeightKg": 520,
"dimensionsCm": [
{
"l": 120.5,
"w": 80,
"h": 60,
"pieces": 5
},
{
"l": 100,
"w": 70,
"h": 50,
"pieces": 5
}
],
"volume": 2.5,
"shc": [
"PER"
]
}
'import requests
url = "https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings"
payload = {
"quoteId": "quote-123",
"flightId": "QR001-20240101",
"pieces": 10,
"weight": 500,
"commodity": "GEN",
"shipper": {
"name": "Example Corp",
"address": "123 Main St, City, Country",
"contact": "contact@example.com"
},
"consignee": {
"name": "Example Corp",
"address": "123 Main St, City, Country",
"contact": "contact@example.com"
},
"awb": {
"prefix": "157",
"number": "157000001"
},
"routing": [
{
"from": "LAX",
"to": "DOH",
"carrier": "QR",
"flightNumber": "QR001",
"date": "2024-01-01"
},
{
"from": "DOH",
"to": "DXB",
"carrier": "QR",
"flightNumber": "QR123",
"date": "2024-01-02"
}
],
"grossWeightKg": 500.5,
"chargeableWeightKg": 520,
"dimensionsCm": [
{
"l": 120.5,
"w": 80,
"h": 60,
"pieces": 5
},
{
"l": 100,
"w": 70,
"h": 50,
"pieces": 5
}
],
"volume": 2.5,
"shc": ["PER"]
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
quoteId: 'quote-123',
flightId: 'QR001-20240101',
pieces: 10,
weight: 500,
commodity: 'GEN',
shipper: {
name: 'Example Corp',
address: '123 Main St, City, Country',
contact: 'contact@example.com'
},
consignee: {
name: 'Example Corp',
address: '123 Main St, City, Country',
contact: 'contact@example.com'
},
awb: {prefix: '157', number: '157000001'},
routing: [
{
from: 'LAX',
to: 'DOH',
carrier: 'QR',
flightNumber: 'QR001',
date: '2024-01-01'
},
{
from: 'DOH',
to: 'DXB',
carrier: 'QR',
flightNumber: 'QR123',
date: '2024-01-02'
}
],
grossWeightKg: 500.5,
chargeableWeightKg: 520,
dimensionsCm: [{l: 120.5, w: 80, h: 60, pieces: 5}, {l: 100, w: 70, h: 50, pieces: 5}],
volume: 2.5,
shc: ['PER']
})
};
fetch('https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'quoteId' => 'quote-123',
'flightId' => 'QR001-20240101',
'pieces' => 10,
'weight' => 500,
'commodity' => 'GEN',
'shipper' => [
'name' => 'Example Corp',
'address' => '123 Main St, City, Country',
'contact' => 'contact@example.com'
],
'consignee' => [
'name' => 'Example Corp',
'address' => '123 Main St, City, Country',
'contact' => 'contact@example.com'
],
'awb' => [
'prefix' => '157',
'number' => '157000001'
],
'routing' => [
[
'from' => 'LAX',
'to' => 'DOH',
'carrier' => 'QR',
'flightNumber' => 'QR001',
'date' => '2024-01-01'
],
[
'from' => 'DOH',
'to' => 'DXB',
'carrier' => 'QR',
'flightNumber' => 'QR123',
'date' => '2024-01-02'
]
],
'grossWeightKg' => 500.5,
'chargeableWeightKg' => 520,
'dimensionsCm' => [
[
'l' => 120.5,
'w' => 80,
'h' => 60,
'pieces' => 5
],
[
'l' => 100,
'w' => 70,
'h' => 50,
'pieces' => 5
]
],
'volume' => 2.5,
'shc' => [
'PER'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings"
payload := strings.NewReader("{\n \"quoteId\": \"quote-123\",\n \"flightId\": \"QR001-20240101\",\n \"pieces\": 10,\n \"weight\": 500,\n \"commodity\": \"GEN\",\n \"shipper\": {\n \"name\": \"Example Corp\",\n \"address\": \"123 Main St, City, Country\",\n \"contact\": \"contact@example.com\"\n },\n \"consignee\": {\n \"name\": \"Example Corp\",\n \"address\": \"123 Main St, City, Country\",\n \"contact\": \"contact@example.com\"\n },\n \"awb\": {\n \"prefix\": \"157\",\n \"number\": \"157000001\"\n },\n \"routing\": [\n {\n \"from\": \"LAX\",\n \"to\": \"DOH\",\n \"carrier\": \"QR\",\n \"flightNumber\": \"QR001\",\n \"date\": \"2024-01-01\"\n },\n {\n \"from\": \"DOH\",\n \"to\": \"DXB\",\n \"carrier\": \"QR\",\n \"flightNumber\": \"QR123\",\n \"date\": \"2024-01-02\"\n }\n ],\n \"grossWeightKg\": 500.5,\n \"chargeableWeightKg\": 520,\n \"dimensionsCm\": [\n {\n \"l\": 120.5,\n \"w\": 80,\n \"h\": 60,\n \"pieces\": 5\n },\n {\n \"l\": 100,\n \"w\": 70,\n \"h\": 50,\n \"pieces\": 5\n }\n ],\n \"volume\": 2.5,\n \"shc\": [\n \"PER\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"quoteId\": \"quote-123\",\n \"flightId\": \"QR001-20240101\",\n \"pieces\": 10,\n \"weight\": 500,\n \"commodity\": \"GEN\",\n \"shipper\": {\n \"name\": \"Example Corp\",\n \"address\": \"123 Main St, City, Country\",\n \"contact\": \"contact@example.com\"\n },\n \"consignee\": {\n \"name\": \"Example Corp\",\n \"address\": \"123 Main St, City, Country\",\n \"contact\": \"contact@example.com\"\n },\n \"awb\": {\n \"prefix\": \"157\",\n \"number\": \"157000001\"\n },\n \"routing\": [\n {\n \"from\": \"LAX\",\n \"to\": \"DOH\",\n \"carrier\": \"QR\",\n \"flightNumber\": \"QR001\",\n \"date\": \"2024-01-01\"\n },\n {\n \"from\": \"DOH\",\n \"to\": \"DXB\",\n \"carrier\": \"QR\",\n \"flightNumber\": \"QR123\",\n \"date\": \"2024-01-02\"\n }\n ],\n \"grossWeightKg\": 500.5,\n \"chargeableWeightKg\": 520,\n \"dimensionsCm\": [\n {\n \"l\": 120.5,\n \"w\": 80,\n \"h\": 60,\n \"pieces\": 5\n },\n {\n \"l\": 100,\n \"w\": 70,\n \"h\": 50,\n \"pieces\": 5\n }\n ],\n \"volume\": 2.5,\n \"shc\": [\n \"PER\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://1a557de0-701c-477d-bedd-433520441dae.mock.pstmn.io/api/bookings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"quoteId\": \"quote-123\",\n \"flightId\": \"QR001-20240101\",\n \"pieces\": 10,\n \"weight\": 500,\n \"commodity\": \"GEN\",\n \"shipper\": {\n \"name\": \"Example Corp\",\n \"address\": \"123 Main St, City, Country\",\n \"contact\": \"contact@example.com\"\n },\n \"consignee\": {\n \"name\": \"Example Corp\",\n \"address\": \"123 Main St, City, Country\",\n \"contact\": \"contact@example.com\"\n },\n \"awb\": {\n \"prefix\": \"157\",\n \"number\": \"157000001\"\n },\n \"routing\": [\n {\n \"from\": \"LAX\",\n \"to\": \"DOH\",\n \"carrier\": \"QR\",\n \"flightNumber\": \"QR001\",\n \"date\": \"2024-01-01\"\n },\n {\n \"from\": \"DOH\",\n \"to\": \"DXB\",\n \"carrier\": \"QR\",\n \"flightNumber\": \"QR123\",\n \"date\": \"2024-01-02\"\n }\n ],\n \"grossWeightKg\": 500.5,\n \"chargeableWeightKg\": 520,\n \"dimensionsCm\": [\n {\n \"l\": 120.5,\n \"w\": 80,\n \"h\": 60,\n \"pieces\": 5\n },\n {\n \"l\": 100,\n \"w\": 70,\n \"h\": 50,\n \"pieces\": 5\n }\n ],\n \"volume\": 2.5,\n \"shc\": [\n \"PER\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "booking-123",
"quoteId": "quote-123",
"status": "pending",
"flightId": "QR001-20240101",
"awbNumber": "15712345678",
"createdAt": "2024-01-01T10:00:00Z"
}Create a new booking with FFR fields and reference to quote.
Reference Documentation
For more information on booking creation workflows, please refer to:
- Pages 20-24 of “Functional_Requirements_V18 FINAL”: https://belli.sg/4nxxCDR
Authorizations
ApiKeyAuthApiKeyHeader
Body
application/json
Quote identifier from the pricing response
Example:
"quote-123"
Flight identifier for the booking
Example:
"QR001-20240101"
Number of pieces in the shipment
Example:
10
Total weight in kilograms
Example:
500
Commodity code
Example:
"GEN"
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Example:
[
{
"from": "LAX",
"to": "DOH",
"carrier": "QR",
"flightNumber": "QR001",
"date": "2024-01-01"
},
{
"from": "DOH",
"to": "DXB",
"carrier": "QR",
"flightNumber": "QR123",
"date": "2024-01-02"
}
]
Gross weight in kilograms
Example:
500.5
Chargeable weight in kilograms
Example:
520
Show child attributes
Show child attributes
Example:
[
{ "l": 120.5, "w": 80, "h": 60, "pieces": 5 },
{ "l": 100, "w": 70, "h": 50, "pieces": 5 }
]
Total volume in cubic meters
Example:
2.5
Special handling codes
Example:
["PER"]
Response
201 - application/json
Booking created
⌘I