Skip to main content

Delete a Modifier

DELETE 

https://euwest.api.elasticpath.com/pcm/pricebooks/:pricebookID/modifiers/:modifierID

Deletes the specified price book modifier.

Request

Responses

A 204 response indicates that the price modifiers have been deleted

Authorization: Authorization

name: Authorizationtype: httpin: headerscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://euwest.api.elasticpath.com/pcm/pricebooks/:pricebookID/modifiers/:modifierID");
request.Headers.Add("Authorization", "Bearer <Authorization>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://euwest.api.elasticpath.com
Auth
Parameters
— pathrequired
— pathrequired
ResponseClear

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