Skip to main content

Delete Account Cart Association

DELETE 

https://useast.api.elasticpath.com/v2/carts/:cartID/relationships/accounts

You can delete an association between an account and a cart.

Request

Responses

No Content
Response Headers

    Authorization: http

    name: bearerAuthtype: httpscheme: bearer
    var client = new HttpClient();
    var request = new HttpRequestMessage(HttpMethod.Delete, "https://useast.api.elasticpath.com/v2/carts/:cartID/relationships/accounts");
    request.Headers.Add("Authorization", "Bearer <TOKEN>");
    var content = new StringContent("{\n \"data\": [\n {\n \"id\": \"string\",\n \"type\": \"string\"\n }\n ]\n}", null, "application/json");
    request.Content = content;
    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
    — header
    Body
    {
      "data": [
        {
          "id": "string",
          "type": "string"
        }
      ]
    }
    
    ResponseClear

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