Skip to main content

Anonymize Rule Promotion Usages

POST 

https://useast.api.elasticpath.com/v2/rule-promotions/usages/anonymize

Anonymizes user-related data in Rule Promotion usage records. This operation is typically used for GDPR compliance or privacy-related requests.

  • This process replaces identifiable user data with anonymized placeholders.
  • Affects all recorded promotion usages where customer data is stored.
  • Does not impact historical transaction records or applied discounts.

A successful request returns a 200 OK response with the anonymized usage records.

Request

Responses

OK

Authorization: http

name: BearerAuthtype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://useast.api.elasticpath.com/v2/rule-promotions/usages/anonymize");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"data\": {\n \"usage_ids\": [\n \"string\"\n ]\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 required
{
  "data": {
    "usage_ids": [
      "string"
    ]
  }
}
ResponseClear

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

We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies.