Update a Tax Item
PUT/v2/carts/:cartID/items/:cartitemID/taxes/:taxitemID
Use this endpoint to update a tax item.
Request
Path Parameters
cartID stringrequired
The unique identifier of the cart.
cartitemID stringrequired
The unique identifier of the cart item.
taxitemID stringrequired
The unique identifier of the tax item.
- application/json
Body
data object
code string
A unique tax code in this jurisdiction.
jurisdiction string
The relevant tax jurisdiction.
name string
The name of the tax item.
rate numberrequired
The tax rate represented as a decimal (12.5% -> 0.125).
type stringrequired
The type of object being returned. Use tax_item
.
Responses
- 200
- 401
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
data object
code string
A unique tax code in this jurisdiction.
jurisdiction string
The relevant tax jurisdiction.
name string
The name of the tax item.
rate numberrequired
The tax rate represented as a decimal (12.5% -> 0.125).
type stringrequired
The type of object being returned. Use tax_item
.
id uuid
The unique identifier for this tax item.
{
"data": {
"code": "string",
"jurisdiction": "string",
"name": "string",
"rate": 0,
"type": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
detail string
status string
title string
[
null
]
{
"errors": {
"status": 401,
"title": "Unauthorized"
}
}
Loading...