Create shipping details for specific items in specific cart - Fabric

Create shipping details for specific items in specific cart

cURL

curl --request PATCH \
  --url https://prod.cart.fabric.inc/v2/carts/{cartId}/items/shipping-details \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'x-site-context: <x-site-context>' \
  --data '
{
  "items": [
    {
      "lineItemId": 1,
      "itemId": "1000000005",
      "shipToId": "fef78121-bee3-4448-bf1c-d5b5461dbda2"
    }
  ],
  "cartId": "d7e78a21-bee3-4448-bf1c-d5b5461dbda2",
  "channel": 12
}
' 

Python

import requests

url = "https://prod.cart.fabric.inc/v2/carts/{cartId}/items/shipping-details"

payload = {
    "items": [
        {
            "lineItemId": 1,
            "itemId": "1000000005",
            "shipToId": "fef78121-bee3-4448-bf1c-d5b5461dbda2"
        }
    ],
    "cartId": "d7e78a21-bee3-4448-bf1c-d5b5461dbda2",
    "channel": 12
}
headers = {
    "x-site-context": "<x-site-context>",
    "Authorization": "<authorization>",
    "Content-Type": "application/json"
}

response = requests.patch(url, json=payload, headers=headers)

print(response.text)

JavaScript (Fetch API)

const options = {
  method: 'PATCH',
  headers: {
    'x-site-context': '<x-site-context>',
    Authorization: '<authorization>',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    items: [
      {
        lineItemId: 1,
        itemId: '1000000005',
        shipToId: 'fef78121-bee3-4448-bf1c-d5b5461dbda2'
      }
    ],
    cartId: 'd7e78a21-bee3-4448-bf1c-d5b5461dbda2',
    channel: 12
  })
};

fetch('https://prod.cart.fabric.inc/v2/carts/{cartId}/items/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}/items/shipping-details",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "PATCH",
  CURLOPT_POSTFIELDS => json_encode([
    'items' => [
        [
                'lineItemId' => 1,
                'itemId' => '1000000005',
                'shipToId' => 'fef78121-bee3-4448-bf1c-d5b5461dbda2'
        ]
    ],
    'cartId' => 'd7e78a21-bee3-4448-bf1c-d5b5461dbda2',
    'channel' => 12
  ]),
  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;
}

Golang

package main

import (
    "fmt"
    "strings"
    "net/http"
    "io"
)

func main() {

url := "https://prod.cart.fabric.inc/v2/carts/{cartId}/items/shipping-details"

payload := strings.NewReader("{\n  \"items\": [\n    {\n      \"lineItemId\": 1,\n      \"itemId\": \"1000000005\",\n      \"shipToId\": \"fef78121-bee3-4448-bf1c-d5b5461dbda2\"\n    }\n  ],\n  \"cartId\": \"d7e78a21-bee3-4448-bf1c-d5b5461dbda2\",\n  \"channel\": 12\n}")

req, _ := http.NewRequest("PATCH", 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))
}

Response Status Codes

Example Response (Success)

{
  "items": [
    {
      "sku": "16B2GS8LD5FDS",
      "items": [
        {
          "sku": "13B9CL6WT2SLW",
          "quantity": 15,
          "cartItemId": "12gved0f-7645-40cb-y7b0-167f8bggdb3z",
          "itemId": "1730902008",
          "title": "Light Cover",
          "createdAt": "2022-02-18T15:12:40.974580",
          "updatedAt": "2022-02-18T15:12:40.974580"
        }
      ],
      "quantity": 1,
      "cartItemId": "88cded0f-1439-40eb-a7a0-167e8bffdb3b",
      "itemId": "1000000001",
      "title": "Varnet Garden Light Kit"
    }
  ],
  "currency": "USD",
  "metadata": {
    "approver": "620d8896058edb0009385311"
  }
}

Example Error Response

{
  "code": "Bad Request",
  "message": "User ID or Cart ID does not exist"
}