Delete customer info

delete

/customercare/v1/{customerId}/provision

Deletes customer information. Requires exactly one of the following parameters to be true: cancelAllTemporaryAllows, unregisterDevices, or reset. If more than one parameter is true, then only the operation with the highest precedence will be completed. The order of precedence is cancelAllTemporaryAllows > unregisterDevices > reset.

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : StatusResponse
Type: object
Status information for API call
Show Source

400 Response

Invalid input

404 Response

Customer ID not found
Back to Top

Examples

The following example shows a sample request and response for deleting customer information.

cURL Command to Delete Customer Information in JSON Format

curl --location --request DELETE '<RISKCC>/customercare/v1/{customerId}/provision?unregisterDevices=true&cancelAllTemporaryAllows=true&reset=true' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>'

Sample Response in JSON Format

{
    "responseCode": "0",
    "responseMessage": "",    
    "status": true
}

cURL Command to Delete Customer Information in XML Format

curl --location --request DELETE '<RISKCC>/customercare/v1/{customerId}/provision?unregisterDevices=true&cancelAllTemporaryAllows=true&reset=true' \
--header 'Content-Type: application/xml' \
--header 'Accept: application/xml' \
--header 'Authorization: Basic <Base64Encoded(<username>:<password>)>'

Sample Response in XML Format

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<StatusResponse>    
    <responseCode>0</responseCode>
    <responseMessage></responseMessage>
    <status>true</status>
</StatusResponse>
Back to Top