Skip to main content

Create Personal Data Erasure Request

POST 

https://useast.api.elasticpath.com/v2/personal-data/erasure-requests

This request serves to create a new erasure request for a given resource ID and Type. All resources that belong to the same personal data set will be erased.

Request

Responses

Created

Authorization: http

name: bearerAuthtype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://useast.api.elasticpath.com/v2/personal-data/erasure-requests");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"data\": {\n \"resource_type\": \"account\",\n \"resource_id\": \"98140362-6caf-4829-b93d-953ac6adbe6e\",\n \"type\": \"string\"\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
Body
{
  "data": {
    "resource_type": "account",
    "resource_id": "98140362-6caf-4829-b93d-953ac6adbe6e",
    "type": "string"
  }
}
ResponseClear

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