Skip to main content
Version: 2.10
SEP-12SEP-31

Delete Customer Data

DELETE 

https://callback.business-server.exampleanchor.com/customer/:id

The request for this endpoint is identical to the DELETE /customer request defined in SEP-12.

Delete the customer's data or queue the customers data for deletion.

Request

Path Parameters

    id stringrequired

Responses

Success.
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://callback.business-server.exampleanchor.com/customer/:id");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://callback.business-server.exampleanchor.com
Parameters
— pathrequired
Did you find this page helpful?