Skip to main content

Delete plan

DELETE 

https://euwest.api.elasticpath.com/v2/subscriptions/plans/:plan_uuid

You must not delete a plan if it is associated with an offering as this invalidates the offering. You must detach a plan from an offering before deleting it.

Request

Responses

Success. The subscription plan is removed.

Authorization: http

name: BearerTokentype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://euwest.api.elasticpath.com/v2/subscriptions/plans/:plan_uuid");
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://euwest.api.elasticpath.com/v2
Auth
Parameters
— pathrequired
ResponseClear

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