Skip to main content

Delete Cart Shipping Group

DELETE 

https://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

Successfully deleted the shipping group

Authorization: http

name: bearerAuthtype: httpscheme: bearer
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());
Request Collapse all
Base URL
https://useast.api.elasticpath.com
Auth
Parameters
— pathrequired
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!