curl --request POST \
--url https://prod.cart.fabric.inc/v2/carts/{cartId}/shipping-details \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'x-site-context: <x-site-context>' \
--data '
{
"shipToType": "SHIP_TO_ADDRESS",
"shipMethod": {
"shipMethodId": "1234",
"shipmentCarrier": "FedEx",
"shipmentMethod": "Next Day"
},
"address": {
"attention": "Billing manager",
"street1": "100 NE 100th St.",
"street2": "Suite 710",
"street3": "Seventh floor",
"street4": "Attention: Pat E. Kake",
"city": "Seattle",
"state": "Washington",
"country": "USA",
"zipCode": "98125",
"email": "test@mail.com",
"kind": "shipping",
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"phone": {
"number": "123-456-7899",
"kind": "MOBILE"
}
},
"taxCode": "FR1000",
"isPickup": true,
"altPickupPerson": {
"attention": "Billing manager",
"street1": "100 NE 100th St.",
"street2": "Suite 710",
"street3": "Seventh floor",
"street4": "Attention: Pat E. Kake",
"city": "Seattle",
"state": "Washington",
"country": "USA",
"zipCode": "98125",
"email": "test@mail.com",
"kind": "shipping",
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"phone": {
"number": "123-456-7899",
"kind": "MOBILE"
}
},
"pickupPerson": {
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"email": "test@mail.com"
},
"warehouseId": "XYZ-1234",
"storeId": "ABC-123",
"estimatedShipDate": "2022-02-18T15:12:40.974580",
"estimatedDeliveryDate": "2022-02-18T15:12:40.974580",
"shipmentInstructions": "Additional user instructions for shipping"
}
'import requests
url = "https://prod.cart.fabric.inc/v2/carts/{cartId}/shipping-details"
payload = {
"shipToType": "SHIP_TO_ADDRESS",
"shipMethod": {
"shipMethodId": "1234",
"shipmentCarrier": "FedEx",
"shipmentMethod": "Next Day"
},
"address": {
"attention": "Billing manager",
"street1": "100 NE 100th St.",
"street2": "Suite 710",
"street3": "Seventh floor",
"street4": "Attention: Pat E. Kake",
"city": "Seattle",
"state": "Washington",
"country": "USA",
"zipCode": "98125",
"email": "test@mail.com",
"kind": "shipping",
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"phone": {
"number": "123-456-7899",
"kind": "MOBILE"
}
},
"taxCode": "FR1000",
"isPickup": True,
"altPickupPerson": {
"attention": "Billing manager",
"street1": "100 NE 100th St.",
"street2": "Suite 710",
"street3": "Seventh floor",
"street4": "Attention: Pat E. Kake",
"city": "Seattle",
"state": "Washington",
"country": "USA",
"zipCode": "98125",
"email": "test@mail.com",
"kind": "shipping",
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"phone": {
"number": "123-456-7899",
"kind": "MOBILE"
}
},
"pickupPerson": {
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"email": "test@mail.com"
},
"warehouseId": "XYZ-1234",
"storeId": "ABC-123",
"estimatedShipDate": "2022-02-18T15:12:40.974580",
"estimatedDeliveryDate": "2022-02-18T15:12:40.974580",
"shipmentInstructions": "Additional user instructions for shipping"
}
headers = {
"x-site-context": "<x-site-context>",
"Authorization": "<authorization>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-site-context': '<x-site-context>',
Authorization: '<authorization>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
shipToType: 'SHIP_TO_ADDRESS',
shipMethod: {shipMethodId: '1234', shipmentCarrier: 'FedEx', shipmentMethod: 'Next Day'},
address: {
attention: 'Billing manager',
street1: '100 NE 100th St.',
street2: 'Suite 710',
street3: 'Seventh floor',
street4: 'Attention: Pat E. Kake',
city: 'Seattle',
state: 'Washington',
country: 'USA',
zipCode: '98125',
email: 'test@mail.com',
kind: 'shipping',
name: {first: 'Pat', middle: 'E', last: 'Kake'},
phone: {number: '123-456-7899', kind: 'MOBILE'}
},
taxCode: 'FR1000',
isPickup: true,
altPickupPerson: {
attention: 'Billing manager',
street1: '100 NE 100th St.',
street2: 'Suite 710',
street3: 'Seventh floor',
street4: 'Attention: Pat E. Kake',
city: 'Seattle',
state: 'Washington',
country: 'USA',
zipCode: '98125',
email: 'test@mail.com',
kind: 'shipping',
name: {first: 'Pat', middle: 'E', last: 'Kake'},
phone: {number: '123-456-7899', kind: 'MOBILE'}
},
pickupPerson: {name: {first: 'Pat', middle: 'E', last: 'Kake'}, email: 'test@mail.com'},
warehouseId: 'XYZ-1234',
storeId: 'ABC-123',
estimatedShipDate: '2022-02-18T15:12:40.974580',
estimatedDeliveryDate: '2022-02-18T15:12:40.974580',
shipmentInstructions: 'Additional user instructions for shipping'
})
};
fetch('https://prod.cart.fabric.inc/v2/carts/{cartId}/shipping-details', 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://prod.cart.fabric.inc/v2/carts/{cartId}/shipping-details",
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([
'shipToType' => 'SHIP_TO_ADDRESS',
'shipMethod' => [
'shipMethodId' => '1234',
'shipmentCarrier' => 'FedEx',
'shipmentMethod' => 'Next Day'
],
'address' => [
'attention' => 'Billing manager',
'street1' => '100 NE 100th St.',
'street2' => 'Suite 710',
'street3' => 'Seventh floor',
'street4' => 'Attention: Pat E. Kake',
'city' => 'Seattle',
'state' => 'Washington',
'country' => 'USA',
'zipCode' => '98125',
'email' => 'test@mail.com',
'kind' => 'shipping',
'name' => [
'first' => 'Pat',
'middle' => 'E',
'last' => 'Kake'
],
'phone' => [
'number' => '123-456-7899',
'kind' => 'MOBILE'
]
],
'taxCode' => 'FR1000',
'isPickup' => true,
'altPickupPerson' => [
'attention' => 'Billing manager',
'street1' => '100 NE 100th St.',
'street2' => 'Suite 710',
'street3' => 'Seventh floor',
'street4' => 'Attention: Pat E. Kake',
'city' => 'Seattle',
'state' => 'Washington',
'country' => 'USA',
'zipCode' => '98125',
'email' => 'test@mail.com',
'kind' => 'shipping',
'name' => [
'first' => 'Pat',
'middle' => 'E',
'last' => 'Kake'
],
'phone' => [
'number' => '123-456-7899',
'kind' => 'MOBILE'
]
],
'pickupPerson' => [
'name' => [
'first' => 'Pat',
'middle' => 'E',
'last' => 'Kake'
],
'email' => 'test@mail.com'
],
'warehouseId' => 'XYZ-1234',
'storeId' => 'ABC-123',
'estimatedShipDate' => '2022-02-18T15:12:40.974580',
'estimatedDeliveryDate' => '2022-02-18T15:12:40.974580',
'shipmentInstructions' => 'Additional user instructions for shipping'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>",
"Content-Type: application/json",
"x-site-context: <x-site-context>"
],
]);
$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://prod.cart.fabric.inc/v2/carts/{cartId}/shipping-details"
payload := strings.NewReader("{\n \"shipToType\": \"SHIP_TO_ADDRESS\",\n \"shipMethod\": {\n \"shipMethodId\": \"1234\",\n \"shipmentCarrier\": \"FedEx\",\n \"shipmentMethod\": \"Next Day\"\n },\n \"address\": {\n \"attention\": \"Billing manager\",\n \"street1\": \"100 NE 100th St.\",\n \"street2\": \"Suite 710\",\n \"street3\": \"Seventh floor\",\n \"street4\": \"Attention: Pat E. Kake\",\n \"city\": \"Seattle\",\n \"state\": \"Washington\",\n \"country\": \"USA\",\n \"zipCode\": \"98125\",\n \"email\": \"test@mail.com\",\n \"kind\": \"shipping\",\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"phone\": {\n \"number\": \"123-456-7899\",\n \"kind\": \"MOBILE\"\n }\n },\n \"taxCode\": \"FR1000\",\n \"isPickup\": true,\n \"altPickupPerson\": {\n \"attention\": \"Billing manager\",\n \"street1\": \"100 NE 100th St.\",\n \"street2\": \"Suite 710\",\n \"street3\": \"Seventh floor\",\n \"street4\": \"Attention: Pat E. Kake\",\n \"city\": \"Seattle\",\n \"state\": \"Washington\",\n \"country\": \"USA\",\n \"zipCode\": \"98125\",\n \"email\": \"test@mail.com\",\n \"kind\": \"shipping\",\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"phone\": {\n \"number\": \"123-456-7899\",\n \"kind\": \"MOBILE\"\n }\n },\n \"pickupPerson\": {\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"email\": \"test@mail.com\"\n },\n \"warehouseId\": \"XYZ-1234\",\n \"storeId\": \"ABC-123\",\n \"estimatedShipDate\": \"2022-02-18T15:12:40.974580\",\n \"estimatedDeliveryDate\": \"2022-02-18T15:12:40.974580\",\n \"shipmentInstructions\": \"Additional user instructions for shipping\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-site-context", "<x-site-context>")
req.Header.Add("Authorization", "<authorization>")
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://prod.cart.fabric.inc/v2/carts/{cartId}/shipping-details")
.header("x-site-context", "<x-site-context>")
.header("Authorization", "<authorization>")
.header("Content-Type", "application/json")
.body("{\n \"shipToType\": \"SHIP_TO_ADDRESS\",\n \"shipMethod\": {\n \"shipMethodId\": \"1234\",\n \"shipmentCarrier\": \"FedEx\",\n \"shipmentMethod\": \"Next Day\"\n },\n \"address\": {\n \"attention\": \"Billing manager\",\n \"street1\": \"100 NE 100th St.\",\n \"street2\": \"Suite 710\",\n \"street3\": \"Seventh floor\",\n \"street4\": \"Attention: Pat E. Kake\",\n \"city\": \"Seattle\",\n \"state\": \"Washington\",\n \"country\": \"USA\",\n \"zipCode\": \"98125\",\n \"email\": \"test@mail.com\",\n \"kind\": \"shipping\",\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"phone\": {\n \"number\": \"123-456-7899\",\n \"kind\": \"MOBILE\"\n }\n },\n \"taxCode\": \"FR1000\",\n \"isPickup\": true,\n \"altPickupPerson\": {\n \"attention\": \"Billing manager\",\n \"street1\": \"100 NE 100th St.\",\n \"street2\": \"Suite 710\",\n \"street3\": \"Seventh floor\",\n \"street4\": \"Attention: Pat E. Kake\",\n \"city\": \"Seattle\",\n \"state\": \"Washington\",\n \"country\": \"USA\",\n \"zipCode\": \"98125\",\n \"email\": \"test@mail.com\",\n \"kind\": \"shipping\",\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"phone\": {\n \"number\": \"123-456-7899\",\n \"kind\": \"MOBILE\"\n }\n },\n \"pickupPerson\": {\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"email\": \"test@mail.com\"\n },\n \"warehouseId\": \"XYZ-1234\",\n \"storeId\": \"ABC-123\",\n \"estimatedShipDate\": \"2022-02-18T15:12:40.974580\",\n \"estimatedDeliveryDate\": \"2022-02-18T15:12:40.974580\",\n \"shipmentInstructions\": \"Additional user instructions for shipping\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://prod.cart.fabric.inc/v2/carts/{cartId}/shipping-details")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-site-context"] = '<x-site-context>'
request["Authorization"] = '<authorization>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"shipToType\": \"SHIP_TO_ADDRESS\",\n \"shipMethod\": {\n \"shipMethodId\": \"1234\",\n \"shipmentCarrier\": \"FedEx\",\n \"shipmentMethod\": \"Next Day\"\n },\n \"address\": {\n \"attention\": \"Billing manager\",\n \"street1\": \"100 NE 100th St.\",\n \"street2\": \"Suite 710\",\n \"street3\": \"Seventh floor\",\n \"street4\": \"Attention: Pat E. Kake\",\n \"city\": \"Seattle\",\n \"state\": \"Washington\",\n \"country\": \"USA\",\n \"zipCode\": \"98125\",\n \"email\": \"test@mail.com\",\n \"kind\": \"shipping\",\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"phone\": {\n \"number\": \"123-456-7899\",\n \"kind\": \"MOBILE\"\n }\n },\n \"taxCode\": \"FR1000\",\n \"isPickup\": true,\n \"altPickupPerson\": {\n \"attention\": \"Billing manager\",\n \"street1\": \"100 NE 100th St.\",\n \"street2\": \"Suite 710\",\n \"street3\": \"Seventh floor\",\n \"street4\": \"Attention: Pat E. Kake\",\n \"city\": \"Seattle\",\n \"state\": \"Washington\",\n \"country\": \"USA\",\n \"zipCode\": \"98125\",\n \"email\": \"test@mail.com\",\n \"kind\": \"shipping\",\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"phone\": {\n \"number\": \"123-456-7899\",\n \"kind\": \"MOBILE\"\n }\n },\n \"pickupPerson\": {\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"email\": \"test@mail.com\"\n },\n \"warehouseId\": \"XYZ-1234\",\n \"storeId\": \"ABC-123\",\n \"estimatedShipDate\": \"2022-02-18T15:12:40.974580\",\n \"estimatedDeliveryDate\": \"2022-02-18T15:12:40.974580\",\n \"shipmentInstructions\": \"Additional user instructions for shipping\"\n}"
response = http.request(request)
puts response.read_body{
"shipToId": "fef78121-bee3-4448-bf1c-d5b5461dbda2",
"cartId": "d7e78a21-bee3-4448-bf1c-d5b5461dbda2",
"createdAt": "2022-02-18T15:12:40.974580",
"updatedAt": "2022-02-18T15:12:40.974580",
"shipMethod": {
"cost": {
"amount": 10,
"currency": "USD",
"discount": 5
},
"shipMethodId": "1234",
"shipmentCarrier": "FedEx",
"shipmentMethod": "Next Day"
},
"address": {
"attention": "Billing manager",
"street1": "100 NE 100th St.",
"street2": "Suite 710",
"street3": "Seventh floor",
"street4": "Attention: Pat E. Kake",
"city": "Seattle",
"state": "Washington",
"country": "USA",
"zipCode": "98125",
"email": "test@mail.com",
"kind": "shipping",
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"phone": {
"number": "123-456-7899",
"kind": "MOBILE"
}
},
"shipToType": "SHIP_TO_ADDRESS",
"taxCode": "FR1000",
"isPickup": true,
"altPickupPerson": {
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"phone": {
"number": "123-456-7899",
"kind": "MOBILE"
},
"email": "test@mail.com"
},
"pickupPerson": {
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"phone": {
"number": "123-456-7899",
"kind": "MOBILE"
},
"email": "test@mail.com"
},
"warehouseId": "XYZ-1234",
"storeId": "ABC-123",
"estimatedShipDate": "2022-02-18T15:12:40.974580",
"estimatedDeliveryDate": "2022-02-18T15:12:40.974580",
"shipmentInstructions": "Additional user instructions for shipping"
}Create shipping details for all items specific cart
Create shipping details for all items in a specified cart. Shipping details are identified by a unique shippingDetailsId, and include the shipment’s delivery address, shipment method, pickup persons’ details, warehouse ID, store ID, and more.
curl --request POST \
--url https://prod.cart.fabric.inc/v2/carts/{cartId}/shipping-details \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--header 'x-site-context: <x-site-context>' \
--data '
{
"shipToType": "SHIP_TO_ADDRESS",
"shipMethod": {
"shipMethodId": "1234",
"shipmentCarrier": "FedEx",
"shipmentMethod": "Next Day"
},
"address": {
"attention": "Billing manager",
"street1": "100 NE 100th St.",
"street2": "Suite 710",
"street3": "Seventh floor",
"street4": "Attention: Pat E. Kake",
"city": "Seattle",
"state": "Washington",
"country": "USA",
"zipCode": "98125",
"email": "test@mail.com",
"kind": "shipping",
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"phone": {
"number": "123-456-7899",
"kind": "MOBILE"
}
},
"taxCode": "FR1000",
"isPickup": true,
"altPickupPerson": {
"attention": "Billing manager",
"street1": "100 NE 100th St.",
"street2": "Suite 710",
"street3": "Seventh floor",
"street4": "Attention: Pat E. Kake",
"city": "Seattle",
"state": "Washington",
"country": "USA",
"zipCode": "98125",
"email": "test@mail.com",
"kind": "shipping",
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"phone": {
"number": "123-456-7899",
"kind": "MOBILE"
}
},
"pickupPerson": {
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"email": "test@mail.com"
},
"warehouseId": "XYZ-1234",
"storeId": "ABC-123",
"estimatedShipDate": "2022-02-18T15:12:40.974580",
"estimatedDeliveryDate": "2022-02-18T15:12:40.974580",
"shipmentInstructions": "Additional user instructions for shipping"
}
'import requests
url = "https://prod.cart.fabric.inc/v2/carts/{cartId}/shipping-details"
payload = {
"shipToType": "SHIP_TO_ADDRESS",
"shipMethod": {
"shipMethodId": "1234",
"shipmentCarrier": "FedEx",
"shipmentMethod": "Next Day"
},
"address": {
"attention": "Billing manager",
"street1": "100 NE 100th St.",
"street2": "Suite 710",
"street3": "Seventh floor",
"street4": "Attention: Pat E. Kake",
"city": "Seattle",
"state": "Washington",
"country": "USA",
"zipCode": "98125",
"email": "test@mail.com",
"kind": "shipping",
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"phone": {
"number": "123-456-7899",
"kind": "MOBILE"
}
},
"taxCode": "FR1000",
"isPickup": True,
"altPickupPerson": {
"attention": "Billing manager",
"street1": "100 NE 100th St.",
"street2": "Suite 710",
"street3": "Seventh floor",
"street4": "Attention: Pat E. Kake",
"city": "Seattle",
"state": "Washington",
"country": "USA",
"zipCode": "98125",
"email": "test@mail.com",
"kind": "shipping",
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"phone": {
"number": "123-456-7899",
"kind": "MOBILE"
}
},
"pickupPerson": {
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"email": "test@mail.com"
},
"warehouseId": "XYZ-1234",
"storeId": "ABC-123",
"estimatedShipDate": "2022-02-18T15:12:40.974580",
"estimatedDeliveryDate": "2022-02-18T15:12:40.974580",
"shipmentInstructions": "Additional user instructions for shipping"
}
headers = {
"x-site-context": "<x-site-context>",
"Authorization": "<authorization>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-site-context': '<x-site-context>',
Authorization: '<authorization>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
shipToType: 'SHIP_TO_ADDRESS',
shipMethod: {shipMethodId: '1234', shipmentCarrier: 'FedEx', shipmentMethod: 'Next Day'},
address: {
attention: 'Billing manager',
street1: '100 NE 100th St.',
street2: 'Suite 710',
street3: 'Seventh floor',
street4: 'Attention: Pat E. Kake',
city: 'Seattle',
state: 'Washington',
country: 'USA',
zipCode: '98125',
email: 'test@mail.com',
kind: 'shipping',
name: {first: 'Pat', middle: 'E', last: 'Kake'},
phone: {number: '123-456-7899', kind: 'MOBILE'}
},
taxCode: 'FR1000',
isPickup: true,
altPickupPerson: {
attention: 'Billing manager',
street1: '100 NE 100th St.',
street2: 'Suite 710',
street3: 'Seventh floor',
street4: 'Attention: Pat E. Kake',
city: 'Seattle',
state: 'Washington',
country: 'USA',
zipCode: '98125',
email: 'test@mail.com',
kind: 'shipping',
name: {first: 'Pat', middle: 'E', last: 'Kake'},
phone: {number: '123-456-7899', kind: 'MOBILE'}
},
pickupPerson: {name: {first: 'Pat', middle: 'E', last: 'Kake'}, email: 'test@mail.com'},
warehouseId: 'XYZ-1234',
storeId: 'ABC-123',
estimatedShipDate: '2022-02-18T15:12:40.974580',
estimatedDeliveryDate: '2022-02-18T15:12:40.974580',
shipmentInstructions: 'Additional user instructions for shipping'
})
};
fetch('https://prod.cart.fabric.inc/v2/carts/{cartId}/shipping-details', 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://prod.cart.fabric.inc/v2/carts/{cartId}/shipping-details",
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([
'shipToType' => 'SHIP_TO_ADDRESS',
'shipMethod' => [
'shipMethodId' => '1234',
'shipmentCarrier' => 'FedEx',
'shipmentMethod' => 'Next Day'
],
'address' => [
'attention' => 'Billing manager',
'street1' => '100 NE 100th St.',
'street2' => 'Suite 710',
'street3' => 'Seventh floor',
'street4' => 'Attention: Pat E. Kake',
'city' => 'Seattle',
'state' => 'Washington',
'country' => 'USA',
'zipCode' => '98125',
'email' => 'test@mail.com',
'kind' => 'shipping',
'name' => [
'first' => 'Pat',
'middle' => 'E',
'last' => 'Kake'
],
'phone' => [
'number' => '123-456-7899',
'kind' => 'MOBILE'
]
],
'taxCode' => 'FR1000',
'isPickup' => true,
'altPickupPerson' => [
'attention' => 'Billing manager',
'street1' => '100 NE 100th St.',
'street2' => 'Suite 710',
'street3' => 'Seventh floor',
'street4' => 'Attention: Pat E. Kake',
'city' => 'Seattle',
'state' => 'Washington',
'country' => 'USA',
'zipCode' => '98125',
'email' => 'test@mail.com',
'kind' => 'shipping',
'name' => [
'first' => 'Pat',
'middle' => 'E',
'last' => 'Kake'
],
'phone' => [
'number' => '123-456-7899',
'kind' => 'MOBILE'
]
],
'pickupPerson' => [
'name' => [
'first' => 'Pat',
'middle' => 'E',
'last' => 'Kake'
],
'email' => 'test@mail.com'
],
'warehouseId' => 'XYZ-1234',
'storeId' => 'ABC-123',
'estimatedShipDate' => '2022-02-18T15:12:40.974580',
'estimatedDeliveryDate' => '2022-02-18T15:12:40.974580',
'shipmentInstructions' => 'Additional user instructions for shipping'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>",
"Content-Type: application/json",
"x-site-context: <x-site-context>"
],
]);
$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://prod.cart.fabric.inc/v2/carts/{cartId}/shipping-details"
payload := strings.NewReader("{\n \"shipToType\": \"SHIP_TO_ADDRESS\",\n \"shipMethod\": {\n \"shipMethodId\": \"1234\",\n \"shipmentCarrier\": \"FedEx\",\n \"shipmentMethod\": \"Next Day\"\n },\n \"address\": {\n \"attention\": \"Billing manager\",\n \"street1\": \"100 NE 100th St.\",\n \"street2\": \"Suite 710\",\n \"street3\": \"Seventh floor\",\n \"street4\": \"Attention: Pat E. Kake\",\n \"city\": \"Seattle\",\n \"state\": \"Washington\",\n \"country\": \"USA\",\n \"zipCode\": \"98125\",\n \"email\": \"test@mail.com\",\n \"kind\": \"shipping\",\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"phone\": {\n \"number\": \"123-456-7899\",\n \"kind\": \"MOBILE\"\n }\n },\n \"taxCode\": \"FR1000\",\n \"isPickup\": true,\n \"altPickupPerson\": {\n \"attention\": \"Billing manager\",\n \"street1\": \"100 NE 100th St.\",\n \"street2\": \"Suite 710\",\n \"street3\": \"Seventh floor\",\n \"street4\": \"Attention: Pat E. Kake\",\n \"city\": \"Seattle\",\n \"state\": \"Washington\",\n \"country\": \"USA\",\n \"zipCode\": \"98125\",\n \"email\": \"test@mail.com\",\n \"kind\": \"shipping\",\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"phone\": {\n \"number\": \"123-456-7899\",\n \"kind\": \"MOBILE\"\n }\n },\n \"pickupPerson\": {\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"email\": \"test@mail.com\"\n },\n \"warehouseId\": \"XYZ-1234\",\n \"storeId\": \"ABC-123\",\n \"estimatedShipDate\": \"2022-02-18T15:12:40.974580\",\n \"estimatedDeliveryDate\": \"2022-02-18T15:12:40.974580\",\n \"shipmentInstructions\": \"Additional user instructions for shipping\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-site-context", "<x-site-context>")
req.Header.Add("Authorization", "<authorization>")
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://prod.cart.fabric.inc/v2/carts/{cartId}/shipping-details")
.header("x-site-context", "<x-site-context>")
.header("Authorization", "<authorization>")
.header("Content-Type", "application/json")
.body("{\n \"shipToType\": \"SHIP_TO_ADDRESS\",\n \"shipMethod\": {\n \"shipMethodId\": \"1234\",\n \"shipmentCarrier\": \"FedEx\",\n \"shipmentMethod\": \"Next Day\"\n },\n \"address\": {\n \"attention\": \"Billing manager\",\n \"street1\": \"100 NE 100th St.\",\n \"street2\": \"Suite 710\",\n \"street3\": \"Seventh floor\",\n \"street4\": \"Attention: Pat E. Kake\",\n \"city\": \"Seattle\",\n \"state\": \"Washington\",\n \"country\": \"USA\",\n \"zipCode\": \"98125\",\n \"email\": \"test@mail.com\",\n \"kind\": \"shipping\",\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"phone\": {\n \"number\": \"123-456-7899\",\n \"kind\": \"MOBILE\"\n }\n },\n \"taxCode\": \"FR1000\",\n \"isPickup\": true,\n \"altPickupPerson\": {\n \"attention\": \"Billing manager\",\n \"street1\": \"100 NE 100th St.\",\n \"street2\": \"Suite 710\",\n \"street3\": \"Seventh floor\",\n \"street4\": \"Attention: Pat E. Kake\",\n \"city\": \"Seattle\",\n \"state\": \"Washington\",\n \"country\": \"USA\",\n \"zipCode\": \"98125\",\n \"email\": \"test@mail.com\",\n \"kind\": \"shipping\",\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"phone\": {\n \"number\": \"123-456-7899\",\n \"kind\": \"MOBILE\"\n }\n },\n \"pickupPerson\": {\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"email\": \"test@mail.com\"\n },\n \"warehouseId\": \"XYZ-1234\",\n \"storeId\": \"ABC-123\",\n \"estimatedShipDate\": \"2022-02-18T15:12:40.974580\",\n \"estimatedDeliveryDate\": \"2022-02-18T15:12:40.974580\",\n \"shipmentInstructions\": \"Additional user instructions for shipping\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://prod.cart.fabric.inc/v2/carts/{cartId}/shipping-details")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-site-context"] = '<x-site-context>'
request["Authorization"] = '<authorization>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"shipToType\": \"SHIP_TO_ADDRESS\",\n \"shipMethod\": {\n \"shipMethodId\": \"1234\",\n \"shipmentCarrier\": \"FedEx\",\n \"shipmentMethod\": \"Next Day\"\n },\n \"address\": {\n \"attention\": \"Billing manager\",\n \"street1\": \"100 NE 100th St.\",\n \"street2\": \"Suite 710\",\n \"street3\": \"Seventh floor\",\n \"street4\": \"Attention: Pat E. Kake\",\n \"city\": \"Seattle\",\n \"state\": \"Washington\",\n \"country\": \"USA\",\n \"zipCode\": \"98125\",\n \"email\": \"test@mail.com\",\n \"kind\": \"shipping\",\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"phone\": {\n \"number\": \"123-456-7899\",\n \"kind\": \"MOBILE\"\n }\n },\n \"taxCode\": \"FR1000\",\n \"isPickup\": true,\n \"altPickupPerson\": {\n \"attention\": \"Billing manager\",\n \"street1\": \"100 NE 100th St.\",\n \"street2\": \"Suite 710\",\n \"street3\": \"Seventh floor\",\n \"street4\": \"Attention: Pat E. Kake\",\n \"city\": \"Seattle\",\n \"state\": \"Washington\",\n \"country\": \"USA\",\n \"zipCode\": \"98125\",\n \"email\": \"test@mail.com\",\n \"kind\": \"shipping\",\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"phone\": {\n \"number\": \"123-456-7899\",\n \"kind\": \"MOBILE\"\n }\n },\n \"pickupPerson\": {\n \"name\": {\n \"first\": \"Pat\",\n \"middle\": \"E\",\n \"last\": \"Kake\"\n },\n \"email\": \"test@mail.com\"\n },\n \"warehouseId\": \"XYZ-1234\",\n \"storeId\": \"ABC-123\",\n \"estimatedShipDate\": \"2022-02-18T15:12:40.974580\",\n \"estimatedDeliveryDate\": \"2022-02-18T15:12:40.974580\",\n \"shipmentInstructions\": \"Additional user instructions for shipping\"\n}"
response = http.request(request)
puts response.read_body{
"shipToId": "fef78121-bee3-4448-bf1c-d5b5461dbda2",
"cartId": "d7e78a21-bee3-4448-bf1c-d5b5461dbda2",
"createdAt": "2022-02-18T15:12:40.974580",
"updatedAt": "2022-02-18T15:12:40.974580",
"shipMethod": {
"cost": {
"amount": 10,
"currency": "USD",
"discount": 5
},
"shipMethodId": "1234",
"shipmentCarrier": "FedEx",
"shipmentMethod": "Next Day"
},
"address": {
"attention": "Billing manager",
"street1": "100 NE 100th St.",
"street2": "Suite 710",
"street3": "Seventh floor",
"street4": "Attention: Pat E. Kake",
"city": "Seattle",
"state": "Washington",
"country": "USA",
"zipCode": "98125",
"email": "test@mail.com",
"kind": "shipping",
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"phone": {
"number": "123-456-7899",
"kind": "MOBILE"
}
},
"shipToType": "SHIP_TO_ADDRESS",
"taxCode": "FR1000",
"isPickup": true,
"altPickupPerson": {
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"phone": {
"number": "123-456-7899",
"kind": "MOBILE"
},
"email": "test@mail.com"
},
"pickupPerson": {
"name": {
"first": "Pat",
"middle": "E",
"last": "Kake"
},
"phone": {
"number": "123-456-7899",
"kind": "MOBILE"
},
"email": "test@mail.com"
},
"warehouseId": "XYZ-1234",
"storeId": "ABC-123",
"estimatedShipDate": "2022-02-18T15:12:40.974580",
"estimatedDeliveryDate": "2022-02-18T15:12:40.974580",
"shipmentInstructions": "Additional user instructions for shipping"
}Headers
The x-site-context header is a JSON object that contains information about the source you wish to pull from. The mandatory account is the 24 character identifier found in Copilot. The channel (Sales channel ID), stage (environment name), and date attributes can be used to further narrow the scope of your data source.
"{\"date\": \"2023-01-01T00:00:00.000Z\", \"channel\": 12, \"account\": \"1234abcd5678efgh9ijklmno\",\"stage\":\"production\"}"
API Key for Gateway
"zaCELgL.0imfnc8mVLWwsAawjYr4Rx-Af50DDqtlx"
Authorization token for the user
"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjYxZjIyMTU4..."
Path Parameters
ID of cart for which shipping data is being created
"d7e78a21-bee3-4448-bf1c-d5b5461dbda2"
Body
Request body containing shipping details to be created
Request body used to create shipping details for a cart
Shipping type
"SHIP_TO_ADDRESS"
Shipping method
Show child attributes
Show child attributes
Shipping address
Show child attributes
Show child attributes
Shipping tax code
"FR1000"
true: Item is set for pickup
false: Item is set for delivery
true
Alternative pickup person
Show child attributes
Show child attributes
Designated pickup person
Show child attributes
Show child attributes
Warehouse ID
"XYZ-1234"
Store ID
"ABC-123"
Estimated date for shipping
"2022-02-18T15:12:40.974580"
Estimated date for delivery
"2022-02-18T15:12:40.974580"
Store ID
"Additional user instructions for shipping"
Response
OK
Shipping response body
Shipping details ID
"fef78121-bee3-4448-bf1c-d5b5461dbda2"
Cart ID
"d7e78a21-bee3-4448-bf1c-d5b5461dbda2"
Shipping details creation time
"2022-02-18T15:12:40.974580"
Last time shipping details were updated
"2022-02-18T15:12:40.974580"
Shipping method and details
Show child attributes
Show child attributes
Shipping address
Show child attributes
Show child attributes
Shipping type
"SHIP_TO_ADDRESS"
Shipping tax code
"FR1000"
true: Item is set for pickup
false: Item is set for delivery
true
Alternative pickup person
Show child attributes
Show child attributes
Designated pickup person
Show child attributes
Show child attributes
Warehouse ID
"XYZ-1234"
Store ID
"ABC-123"
Estimated date for shipping
"2022-02-18T15:12:40.974580"
Estimated date for delivery
"2022-02-18T15:12:40.974580"
Store ID
"Additional user instructions for shipping"
Was this page helpful?
