Add or update item attributes and fees - Fabric

Add or Update Item Attributes and Fees

cURL

curl --request PATCH \
  --url https://prod.cart.fabric.inc/v2/carts/{cartId}/item/{lineItemId}/attribute \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'x-site-context: <x-site-context>' \
  --data @- <<EOF
[
  {
    "extra": {
      "productFamily": "Laptop computers"
    },
    "fees": [
      {
        "feeId": "73bc09d0-874a-4c3d-84d0-df1670d03578",
        "name": "gift",
        "type": "gift_wrap",
        "amount": 10.5,
        "attributes": "{'from': 'sam', 'to': 'david' }"
      }
    ]
  }
]
EOF

Python

import requests

url = "https://prod.cart.fabric.inc/v2/carts/{cartId}/item/{lineItemId}/attribute"

payload = [
    {
        "extra": { "productFamily": "Laptop computers" },
        "fees": [
            {
                "feeId": "73bc09d0-874a-4c3d-84d0-df1670d03578",
                "name": "gift",
                "type": "gift_wrap",
                "amount": 10.5,
                "attributes": "{'from': 'sam', 'to': 'david' }"
            }
        ]
    }
]
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

const options = {
  method: 'PATCH',
  headers: {
    'x-site-context': '<x-site-context>',
    Authorization: '<authorization>',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify([
    {
      extra: {productFamily: 'Laptop computers'},
      fees: [
        {
          feeId: '73bc09d0-874a-4c3d-84d0-df1670d03578',
          name: 'gift',
          type: 'gift_wrap',
          amount: 10.5,
          attributes: '{'from': 'sam', 'to': 'david'}'
        }
      ]
    }
  ])
};

fetch('https://prod.cart.fabric.inc/v2/carts/{cartId}/item/{lineItemId}/attribute', 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}/item/{lineItemId}/attribute",
  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([
    [
        'extra' => [
                'productFamily' => 'Laptop computers'
        ],
        'fees' => [
                [
                                'feeId' => '73bc09d0-874a-4c3d-84d0-df1670d03578',
                                'name' => 'gift',
                                'type' => 'gift_wrap',
                                'amount' => 10.5,
                                'attributes' => '{'from': 'sam', 'to': 'david'}'
                ]
        ]
    ]
  ]),
  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;
}

Go

package main

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

func main() {

url := "https://prod.cart.fabric.inc/v2/carts/{cartId}/item/{lineItemId}/attribute"

payload := strings.NewReader("[\n  {\n    \"extra\": {\n      \"productFamily\": \"Laptop computers\"}\n    ,\n    \"fees\": [\n      {\n        \"feeId\": \"73bc09d0-874a-4c3d-84d0-df1670d03578\",\n        \"name\": \"gift\",\n        \"type\": \"gift_wrap\",\n        \"amount\": 10.5,\n        \"attributes\": \"{'from': 'sam', 'to': 'david'}\"\n      }\n    ]\n  }\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))
}

Error Handling

{
  "code": "Bad Request",
  "message": "User ID or Cart ID does not exist"
}
{
  "code": "Cart or item not found",
  "message": "If the issue persists please contact support@fabric.inc."
}
{
  "code": "Internal Server Error",
  "message": "An internal error occurred. If the issue persists please contact support@fabric.inc."
}

Response