LogoLogo
System status
Admin APIs reference
Admin APIs reference
  • Admin APIs reference
  • Order management
    • Refunds
    • Retrieve an order (synchronous API)
    • Retrieve an invoice (synchronous API)
    • Manage orders (synchronous API)
  • Customer management
    • Retrieve a customer (synchronous API)
    • Manage a customer (synchronous API)
  • Subscription mangement
    • Manage a subscription
    • Renew a subscription
    • Apply an immediate midterm change
    • Manage subscription payments
    • Modify the subscription's external reference ID
    • Manage the subscription's address
    • Get all orders
    • Retrieve subscriptions with pending actions
    • Retrieve subscriptions
    • Manage a perpetual price
    • Update a subscription's email address
  • Site management
    • Get authorized countries
  • Product management
    • Manage products (asynchronous API)
    • Retrieve a product (synchronous API)
    • Retrieve the product task status (synchronous API)
  • Offer Management
    • Manage offers (synchronous API)
    • Retrieve an offer (synchronous API)
  • Webhook management
    • Manage webhook events
  • Payment source
    • Source management
  • File management
    • Retrieve a file
Powered by GitBook
On this page
  1. Order management

Manage orders (synchronous API)

PreviousRetrieve an invoice (synchronous API)NextRetrieve a customer (synchronous API)

Last updated 10 months ago

Request PII removal for a customer using the given order ID

post

Request PII (Personally Identifiable Information) removal for a customer using the given order ID.

Authorizations
Path parameters
orderIdstringRequired

The identifier of the Order.

Responses
200
Successful response.
application/json
400
* Bad request.
application/json
401
* Please verify your API key and secret (if applicable) is correct.
403
* Customer with the external reference identifier is not unique on the site.
application/json
404
* Customer cannot be found.
application/json
post
POST /v1/orders/{orderId}/requestPIIRemoval HTTP/1.1
Host: api.digitalriver.com
Authorization: Basic username:password
Accept: */*
{
  "piiRemovalResponse": {
    "message": "Due to Digital River's legal and business obligations globally, we need to retain personal data for a defined period of time. Personal data will be removed once this period expires per our data retention policy.",
    "status": "received"
  }
}