curl --request POST \
--url https://api.quivo.co/inbounds \
--header 'Content-Type: application/json' \
--data '
{
"sellerId": 123,
"warehouseId": 123,
"shipFrom": {
"name1": "<string>",
"name2": "<string>",
"company": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"phone": "<string>",
"email": "<string>"
},
"estimatedArrivalTime": "2023-11-07T05:31:56Z",
"deliverySlipNumber": "<string>",
"inboundPositions": [
{
"quantity": 2,
"sku": "<string>",
"lot": "<string>",
"location": "<string>",
"expirationDate": "2023-12-25",
"serialNumbers": [
"<string>"
],
"positionNumber": "<string>",
"customAttributes": "{\"attr1\":\"val1\"}"
}
],
"deliveryInfo": {
"quantity": 2
},
"trackingNumber": "<string>",
"customAttributes": "{\"attr1\":\"val1\"}",
"movementReferenceNumber": "<string>",
"carrier": "<string>",
"comments": "<string>",
"deliverySlipDate": "2023-11-07T05:31:56Z",
"externalIdentifier": "<string>",
"tags": [
"<string>"
],
"inboundReference": "<string>"
}
'import requests
url = "https://api.quivo.co/inbounds"
payload = {
"sellerId": 123,
"warehouseId": 123,
"shipFrom": {
"name1": "<string>",
"name2": "<string>",
"company": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"phone": "<string>",
"email": "<string>"
},
"estimatedArrivalTime": "2023-11-07T05:31:56Z",
"deliverySlipNumber": "<string>",
"inboundPositions": [
{
"quantity": 2,
"sku": "<string>",
"lot": "<string>",
"location": "<string>",
"expirationDate": "2023-12-25",
"serialNumbers": ["<string>"],
"positionNumber": "<string>",
"customAttributes": "{\"attr1\":\"val1\"}"
}
],
"deliveryInfo": { "quantity": 2 },
"trackingNumber": "<string>",
"customAttributes": "{\"attr1\":\"val1\"}",
"movementReferenceNumber": "<string>",
"carrier": "<string>",
"comments": "<string>",
"deliverySlipDate": "2023-11-07T05:31:56Z",
"externalIdentifier": "<string>",
"tags": ["<string>"],
"inboundReference": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
sellerId: 123,
warehouseId: 123,
shipFrom: {
name1: '<string>',
name2: '<string>',
company: '<string>',
address1: '<string>',
address2: '<string>',
address3: '<string>',
zip: '<string>',
city: '<string>',
state: '<string>',
country: '<string>',
phone: '<string>',
email: '<string>'
},
estimatedArrivalTime: '2023-11-07T05:31:56Z',
deliverySlipNumber: '<string>',
inboundPositions: [
{
quantity: 2,
sku: '<string>',
lot: '<string>',
location: '<string>',
expirationDate: '2023-12-25',
serialNumbers: ['<string>'],
positionNumber: '<string>',
customAttributes: '{"attr1":"val1"}'
}
],
deliveryInfo: {quantity: 2},
trackingNumber: '<string>',
customAttributes: '{"attr1":"val1"}',
movementReferenceNumber: '<string>',
carrier: '<string>',
comments: '<string>',
deliverySlipDate: '2023-11-07T05:31:56Z',
externalIdentifier: '<string>',
tags: ['<string>'],
inboundReference: '<string>'
})
};
fetch('https://api.quivo.co/inbounds', 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://api.quivo.co/inbounds",
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([
'sellerId' => 123,
'warehouseId' => 123,
'shipFrom' => [
'name1' => '<string>',
'name2' => '<string>',
'company' => '<string>',
'address1' => '<string>',
'address2' => '<string>',
'address3' => '<string>',
'zip' => '<string>',
'city' => '<string>',
'state' => '<string>',
'country' => '<string>',
'phone' => '<string>',
'email' => '<string>'
],
'estimatedArrivalTime' => '2023-11-07T05:31:56Z',
'deliverySlipNumber' => '<string>',
'inboundPositions' => [
[
'quantity' => 2,
'sku' => '<string>',
'lot' => '<string>',
'location' => '<string>',
'expirationDate' => '2023-12-25',
'serialNumbers' => [
'<string>'
],
'positionNumber' => '<string>',
'customAttributes' => '{"attr1":"val1"}'
]
],
'deliveryInfo' => [
'quantity' => 2
],
'trackingNumber' => '<string>',
'customAttributes' => '{"attr1":"val1"}',
'movementReferenceNumber' => '<string>',
'carrier' => '<string>',
'comments' => '<string>',
'deliverySlipDate' => '2023-11-07T05:31:56Z',
'externalIdentifier' => '<string>',
'tags' => [
'<string>'
],
'inboundReference' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"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://api.quivo.co/inbounds"
payload := strings.NewReader("{\n \"sellerId\": 123,\n \"warehouseId\": 123,\n \"shipFrom\": {\n \"name1\": \"<string>\",\n \"name2\": \"<string>\",\n \"company\": \"<string>\",\n \"address1\": \"<string>\",\n \"address2\": \"<string>\",\n \"address3\": \"<string>\",\n \"zip\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"country\": \"<string>\",\n \"phone\": \"<string>\",\n \"email\": \"<string>\"\n },\n \"estimatedArrivalTime\": \"2023-11-07T05:31:56Z\",\n \"deliverySlipNumber\": \"<string>\",\n \"inboundPositions\": [\n {\n \"quantity\": 2,\n \"sku\": \"<string>\",\n \"lot\": \"<string>\",\n \"location\": \"<string>\",\n \"expirationDate\": \"2023-12-25\",\n \"serialNumbers\": [\n \"<string>\"\n ],\n \"positionNumber\": \"<string>\",\n \"customAttributes\": \"{\\\"attr1\\\":\\\"val1\\\"}\"\n }\n ],\n \"deliveryInfo\": {\n \"quantity\": 2\n },\n \"trackingNumber\": \"<string>\",\n \"customAttributes\": \"{\\\"attr1\\\":\\\"val1\\\"}\",\n \"movementReferenceNumber\": \"<string>\",\n \"carrier\": \"<string>\",\n \"comments\": \"<string>\",\n \"deliverySlipDate\": \"2023-11-07T05:31:56Z\",\n \"externalIdentifier\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"inboundReference\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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://api.quivo.co/inbounds")
.header("Content-Type", "application/json")
.body("{\n \"sellerId\": 123,\n \"warehouseId\": 123,\n \"shipFrom\": {\n \"name1\": \"<string>\",\n \"name2\": \"<string>\",\n \"company\": \"<string>\",\n \"address1\": \"<string>\",\n \"address2\": \"<string>\",\n \"address3\": \"<string>\",\n \"zip\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"country\": \"<string>\",\n \"phone\": \"<string>\",\n \"email\": \"<string>\"\n },\n \"estimatedArrivalTime\": \"2023-11-07T05:31:56Z\",\n \"deliverySlipNumber\": \"<string>\",\n \"inboundPositions\": [\n {\n \"quantity\": 2,\n \"sku\": \"<string>\",\n \"lot\": \"<string>\",\n \"location\": \"<string>\",\n \"expirationDate\": \"2023-12-25\",\n \"serialNumbers\": [\n \"<string>\"\n ],\n \"positionNumber\": \"<string>\",\n \"customAttributes\": \"{\\\"attr1\\\":\\\"val1\\\"}\"\n }\n ],\n \"deliveryInfo\": {\n \"quantity\": 2\n },\n \"trackingNumber\": \"<string>\",\n \"customAttributes\": \"{\\\"attr1\\\":\\\"val1\\\"}\",\n \"movementReferenceNumber\": \"<string>\",\n \"carrier\": \"<string>\",\n \"comments\": \"<string>\",\n \"deliverySlipDate\": \"2023-11-07T05:31:56Z\",\n \"externalIdentifier\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"inboundReference\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/inbounds")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"sellerId\": 123,\n \"warehouseId\": 123,\n \"shipFrom\": {\n \"name1\": \"<string>\",\n \"name2\": \"<string>\",\n \"company\": \"<string>\",\n \"address1\": \"<string>\",\n \"address2\": \"<string>\",\n \"address3\": \"<string>\",\n \"zip\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"country\": \"<string>\",\n \"phone\": \"<string>\",\n \"email\": \"<string>\"\n },\n \"estimatedArrivalTime\": \"2023-11-07T05:31:56Z\",\n \"deliverySlipNumber\": \"<string>\",\n \"inboundPositions\": [\n {\n \"quantity\": 2,\n \"sku\": \"<string>\",\n \"lot\": \"<string>\",\n \"location\": \"<string>\",\n \"expirationDate\": \"2023-12-25\",\n \"serialNumbers\": [\n \"<string>\"\n ],\n \"positionNumber\": \"<string>\",\n \"customAttributes\": \"{\\\"attr1\\\":\\\"val1\\\"}\"\n }\n ],\n \"deliveryInfo\": {\n \"quantity\": 2\n },\n \"trackingNumber\": \"<string>\",\n \"customAttributes\": \"{\\\"attr1\\\":\\\"val1\\\"}\",\n \"movementReferenceNumber\": \"<string>\",\n \"carrier\": \"<string>\",\n \"comments\": \"<string>\",\n \"deliverySlipDate\": \"2023-11-07T05:31:56Z\",\n \"externalIdentifier\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"inboundReference\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": "<string>",
"inboundId": 123,
"field": "<string>",
"message": "<string>"
}Create inbound shipment
Create a new inbound shipment or inbound delivery.
curl --request POST \
--url https://api.quivo.co/inbounds \
--header 'Content-Type: application/json' \
--data '
{
"sellerId": 123,
"warehouseId": 123,
"shipFrom": {
"name1": "<string>",
"name2": "<string>",
"company": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"phone": "<string>",
"email": "<string>"
},
"estimatedArrivalTime": "2023-11-07T05:31:56Z",
"deliverySlipNumber": "<string>",
"inboundPositions": [
{
"quantity": 2,
"sku": "<string>",
"lot": "<string>",
"location": "<string>",
"expirationDate": "2023-12-25",
"serialNumbers": [
"<string>"
],
"positionNumber": "<string>",
"customAttributes": "{\"attr1\":\"val1\"}"
}
],
"deliveryInfo": {
"quantity": 2
},
"trackingNumber": "<string>",
"customAttributes": "{\"attr1\":\"val1\"}",
"movementReferenceNumber": "<string>",
"carrier": "<string>",
"comments": "<string>",
"deliverySlipDate": "2023-11-07T05:31:56Z",
"externalIdentifier": "<string>",
"tags": [
"<string>"
],
"inboundReference": "<string>"
}
'import requests
url = "https://api.quivo.co/inbounds"
payload = {
"sellerId": 123,
"warehouseId": 123,
"shipFrom": {
"name1": "<string>",
"name2": "<string>",
"company": "<string>",
"address1": "<string>",
"address2": "<string>",
"address3": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"phone": "<string>",
"email": "<string>"
},
"estimatedArrivalTime": "2023-11-07T05:31:56Z",
"deliverySlipNumber": "<string>",
"inboundPositions": [
{
"quantity": 2,
"sku": "<string>",
"lot": "<string>",
"location": "<string>",
"expirationDate": "2023-12-25",
"serialNumbers": ["<string>"],
"positionNumber": "<string>",
"customAttributes": "{\"attr1\":\"val1\"}"
}
],
"deliveryInfo": { "quantity": 2 },
"trackingNumber": "<string>",
"customAttributes": "{\"attr1\":\"val1\"}",
"movementReferenceNumber": "<string>",
"carrier": "<string>",
"comments": "<string>",
"deliverySlipDate": "2023-11-07T05:31:56Z",
"externalIdentifier": "<string>",
"tags": ["<string>"],
"inboundReference": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
sellerId: 123,
warehouseId: 123,
shipFrom: {
name1: '<string>',
name2: '<string>',
company: '<string>',
address1: '<string>',
address2: '<string>',
address3: '<string>',
zip: '<string>',
city: '<string>',
state: '<string>',
country: '<string>',
phone: '<string>',
email: '<string>'
},
estimatedArrivalTime: '2023-11-07T05:31:56Z',
deliverySlipNumber: '<string>',
inboundPositions: [
{
quantity: 2,
sku: '<string>',
lot: '<string>',
location: '<string>',
expirationDate: '2023-12-25',
serialNumbers: ['<string>'],
positionNumber: '<string>',
customAttributes: '{"attr1":"val1"}'
}
],
deliveryInfo: {quantity: 2},
trackingNumber: '<string>',
customAttributes: '{"attr1":"val1"}',
movementReferenceNumber: '<string>',
carrier: '<string>',
comments: '<string>',
deliverySlipDate: '2023-11-07T05:31:56Z',
externalIdentifier: '<string>',
tags: ['<string>'],
inboundReference: '<string>'
})
};
fetch('https://api.quivo.co/inbounds', 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://api.quivo.co/inbounds",
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([
'sellerId' => 123,
'warehouseId' => 123,
'shipFrom' => [
'name1' => '<string>',
'name2' => '<string>',
'company' => '<string>',
'address1' => '<string>',
'address2' => '<string>',
'address3' => '<string>',
'zip' => '<string>',
'city' => '<string>',
'state' => '<string>',
'country' => '<string>',
'phone' => '<string>',
'email' => '<string>'
],
'estimatedArrivalTime' => '2023-11-07T05:31:56Z',
'deliverySlipNumber' => '<string>',
'inboundPositions' => [
[
'quantity' => 2,
'sku' => '<string>',
'lot' => '<string>',
'location' => '<string>',
'expirationDate' => '2023-12-25',
'serialNumbers' => [
'<string>'
],
'positionNumber' => '<string>',
'customAttributes' => '{"attr1":"val1"}'
]
],
'deliveryInfo' => [
'quantity' => 2
],
'trackingNumber' => '<string>',
'customAttributes' => '{"attr1":"val1"}',
'movementReferenceNumber' => '<string>',
'carrier' => '<string>',
'comments' => '<string>',
'deliverySlipDate' => '2023-11-07T05:31:56Z',
'externalIdentifier' => '<string>',
'tags' => [
'<string>'
],
'inboundReference' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"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://api.quivo.co/inbounds"
payload := strings.NewReader("{\n \"sellerId\": 123,\n \"warehouseId\": 123,\n \"shipFrom\": {\n \"name1\": \"<string>\",\n \"name2\": \"<string>\",\n \"company\": \"<string>\",\n \"address1\": \"<string>\",\n \"address2\": \"<string>\",\n \"address3\": \"<string>\",\n \"zip\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"country\": \"<string>\",\n \"phone\": \"<string>\",\n \"email\": \"<string>\"\n },\n \"estimatedArrivalTime\": \"2023-11-07T05:31:56Z\",\n \"deliverySlipNumber\": \"<string>\",\n \"inboundPositions\": [\n {\n \"quantity\": 2,\n \"sku\": \"<string>\",\n \"lot\": \"<string>\",\n \"location\": \"<string>\",\n \"expirationDate\": \"2023-12-25\",\n \"serialNumbers\": [\n \"<string>\"\n ],\n \"positionNumber\": \"<string>\",\n \"customAttributes\": \"{\\\"attr1\\\":\\\"val1\\\"}\"\n }\n ],\n \"deliveryInfo\": {\n \"quantity\": 2\n },\n \"trackingNumber\": \"<string>\",\n \"customAttributes\": \"{\\\"attr1\\\":\\\"val1\\\"}\",\n \"movementReferenceNumber\": \"<string>\",\n \"carrier\": \"<string>\",\n \"comments\": \"<string>\",\n \"deliverySlipDate\": \"2023-11-07T05:31:56Z\",\n \"externalIdentifier\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"inboundReference\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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://api.quivo.co/inbounds")
.header("Content-Type", "application/json")
.body("{\n \"sellerId\": 123,\n \"warehouseId\": 123,\n \"shipFrom\": {\n \"name1\": \"<string>\",\n \"name2\": \"<string>\",\n \"company\": \"<string>\",\n \"address1\": \"<string>\",\n \"address2\": \"<string>\",\n \"address3\": \"<string>\",\n \"zip\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"country\": \"<string>\",\n \"phone\": \"<string>\",\n \"email\": \"<string>\"\n },\n \"estimatedArrivalTime\": \"2023-11-07T05:31:56Z\",\n \"deliverySlipNumber\": \"<string>\",\n \"inboundPositions\": [\n {\n \"quantity\": 2,\n \"sku\": \"<string>\",\n \"lot\": \"<string>\",\n \"location\": \"<string>\",\n \"expirationDate\": \"2023-12-25\",\n \"serialNumbers\": [\n \"<string>\"\n ],\n \"positionNumber\": \"<string>\",\n \"customAttributes\": \"{\\\"attr1\\\":\\\"val1\\\"}\"\n }\n ],\n \"deliveryInfo\": {\n \"quantity\": 2\n },\n \"trackingNumber\": \"<string>\",\n \"customAttributes\": \"{\\\"attr1\\\":\\\"val1\\\"}\",\n \"movementReferenceNumber\": \"<string>\",\n \"carrier\": \"<string>\",\n \"comments\": \"<string>\",\n \"deliverySlipDate\": \"2023-11-07T05:31:56Z\",\n \"externalIdentifier\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"inboundReference\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/inbounds")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"sellerId\": 123,\n \"warehouseId\": 123,\n \"shipFrom\": {\n \"name1\": \"<string>\",\n \"name2\": \"<string>\",\n \"company\": \"<string>\",\n \"address1\": \"<string>\",\n \"address2\": \"<string>\",\n \"address3\": \"<string>\",\n \"zip\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"country\": \"<string>\",\n \"phone\": \"<string>\",\n \"email\": \"<string>\"\n },\n \"estimatedArrivalTime\": \"2023-11-07T05:31:56Z\",\n \"deliverySlipNumber\": \"<string>\",\n \"inboundPositions\": [\n {\n \"quantity\": 2,\n \"sku\": \"<string>\",\n \"lot\": \"<string>\",\n \"location\": \"<string>\",\n \"expirationDate\": \"2023-12-25\",\n \"serialNumbers\": [\n \"<string>\"\n ],\n \"positionNumber\": \"<string>\",\n \"customAttributes\": \"{\\\"attr1\\\":\\\"val1\\\"}\"\n }\n ],\n \"deliveryInfo\": {\n \"quantity\": 2\n },\n \"trackingNumber\": \"<string>\",\n \"customAttributes\": \"{\\\"attr1\\\":\\\"val1\\\"}\",\n \"movementReferenceNumber\": \"<string>\",\n \"carrier\": \"<string>\",\n \"comments\": \"<string>\",\n \"deliverySlipDate\": \"2023-11-07T05:31:56Z\",\n \"externalIdentifier\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"inboundReference\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": "<string>",
"inboundId": 123,
"field": "<string>",
"message": "<string>"
}Body
Data to create a new resource at /inbounds
Request payload for creating a new inbound shipment or inbound delivery. Contains inbound shipment details including expected items, quantities, warehouse destination, and delivery dates.
Seller ID.
Warehouse ID.
A list of warehouse identifiers and names can be obtained by executing GET /warehouses
Detailed address information
Show child attributes
Show child attributes
Estimated date of arrival
Delivery slip number
List of inbound positions
Show child attributes
Show child attributes
Detailed information for inbounddeliveryinfo
Show child attributes
Show child attributes
Optional tracking number
Optional custom attributes of this inbound.
Show child attributes
Show child attributes
"{\"attr1\":\"val1\"}"
Optional movement reference number. Unique identifier assigned to customs declarations within the UK and EU
1024Optional carrier
Comments.
Optional date of the creation of the delivery slip
Optional identifier. Can be a freight number or container number
25Optional tags of this inbound
Optional additional reference of this Inbound.
40Response
Returns the result of the inbound shipment creation, including assigned identifiers and validation status.