Delete Cart Shipping Group
DELETEhttps://useast.api.elasticpath.com/v2/carts/:cartId/shipping-groups/:shippingGroupId
Deletes a shipping group from a cart. You cannot delete a shipping group that is attached to cart items. You must first remove the shipping group from all cart items before deleting the shipping group.
Request
Path Parameters
cartId stringrequired
The ID of the cart
shippingGroupId stringrequired
The ID of the shipping group to delete
Responses
- 204
- 400
- 404
Successfully deleted the shipping group
Cannot delete shipping group that is attached to cart items
- application/json
- Schema
- Example (auto)
- Example
Schema
detailstring
statusstring
titlestring
[
null
]
{
"errors": [
{
"status": 400,
"title": "Cannot delete shipping group",
"detail": "Cannot delete shipping groups attached to cart items. Please remove the shipping group from its cart items and try again."
}
]
}
Cart or shipping group not found
- application/json
- Schema
- Example (auto)
Schema
detailstring
statusstring
titlestring
[
null
]
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.Delete, "https://useast.api.elasticpath.com/v2/carts/:cartId/shipping-groups/:shippingGroupId");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear