Update a Tax Item
PUThttps://useast.api.elasticpath.com/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
Responses
- 200
- 401
Response Headers
- application/json
- Schema
- Example (auto)
Schema
data object
{
"data": {
"code": "string",
"jurisdiction": "string",
"name": "string",
"rate": 0,
"type": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
}
Unauthorized
- application/json
- Schema
- Example (auto)
- Example
Schema
detailstring
statusstring
titlestring
[
null
]
{
"errors": {
"status": 401,
"title": "Unauthorized"
}
}
Authorization: http
name: bearerAuthtype: httpscheme: bearer
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Put, "https://useast.api.elasticpath.com/v2/carts/:cartID/items/:cartitemID/taxes/:taxitemID");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"data\": {\n \"code\": \"string\",\n \"jurisdiction\": \"string\",\n \"name\": \"string\",\n \"rate\": 0,\n \"type\": \"string\"\n }\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear