SEP-12SEP-31
Delete Customer Data
DELETEhttps://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
- 204
- 404
Success.
Customer not found.
- application/json
- Schema
- Example (from schema)
Schema
errorstringrequired
idstring
{
"error": "string",
"id": "string"
}
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
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());
Did you find this page helpful?