Update a specific price adjustment information for a given cart - Fabric

Update a specific price adjustment information for a given cart

cURL Example

curl --request PUT \
  --url https://prod.cart.fabric.inc/v2/carts/{cartId}/adjustments/{adjustmentId} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'x-site-context: <x-site-context>' \
  --data '
{
  "amount": 60.5,
  "reason": "compensation for delay",
  "attributes": {
    "goldMember": [
      false
    ]
  }
}
'```

### Python Example

```python
import requests

url = "https://prod.cart.fabric.inc/v2/carts/{cartId}/adjustments/{adjustmentId}"

payload = {
    "amount": 60.5,
    "reason": "compensation for delay",
    "attributes": { "goldMember": [False] }
}
headers = {
    "x-site-context": "<x-site-context>",
    "Authorization": "<authorization>",
    "Content-Type": "application/json"
}

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

print(response.text)

JavaScript Fetch Example

const options = {
  method: 'PUT',
  headers: {
    'x-site-context': '<x-site-context>',
    Authorization: '<authorization>',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    amount: 60.5,
    reason: 'compensation for delay',
    attributes: {goldMember: [false]}
  })
};

fetch('https://prod.cart.fabric.inc/v2/carts/{cartId}/adjustments/{adjustmentId}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));

PHP cURL Example

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://prod.cart.fabric.inc/v2/carts/{cartId}/adjustments/{adjustmentId}",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "PUT",
  CURLOPT_POSTFIELDS => json_encode([
    'amount' => 60.5,
    'reason' => 'compensation for delay',
    'attributes' => [
        'goldMember' => [
                false
        ]
    ]
  ]),
  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 Example

package main

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

func main() {

url := "https://prod.cart.fabric.inc/v2/carts/{cartId}/adjustments/{adjustmentId}"

payload := strings.NewReader("{\n  \"amount\": 60.5,\n  \"reason\": \"compensation for delay\",\n  \"attributes\": {\n    \"goldMember\": [\n      false\n    ]\n  }\n}")

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

Sample JSON Response

{
  "items": [
    {
      "sku": "16B2GS8LD5FDS",
      "items": [
        {
          "sku": "13B9CL6WT2SLW",
          "quantity": 15,
          "cartItemId": "12gved0f-7645-40cb-y7b0-167f8bggdb3z",
          "itemId": "1730902008",
          "title": "Light Cover",
          "unitPrice": {
            "currency": "USD",
            "amount": 100
          }
        }
      ]
    }
  ],
  "currency": "USD",
  "cartId": "d7e78a21-bee3-4448-bf1c-d5b5461dbda2",
  "totalItems": 3,
  "totalAmount": 95
}