PATCH
/
configuration
/
v1
/
redaction-entities
/
{entityId}
curl --request PATCH \
  --url https://api.sandbox.asapp.com/configuration/v1/redaction-entities/{entityId} \
  --header 'Content-Type: application/json' \
  --header 'asapp-api-id: <api-key>' \
  --header 'asapp-api-secret: <api-key>' \
  --data '{
  "policies": {
    "customerImmediate": false,
    "customerDelayed": false,
    "agentImmediate": false
  }
}'
{
  "id": "CREDIT_CARD_NUMBER",
  "description": "Redacts credit card number",
  "policies": {
    "customerImmediate": false,
    "customerDelayed": false,
    "agentImmediate": false
  }
}

Authorizations

asapp-api-id
string
header
required
asapp-api-secret
string
header
required

Path Parameters

entityId
string
required

Identifier of the entity

Body

application/json
policies
object
required

A set of policies that control when and how redaction is applied. Each policy can be enabled or disabled independently. Some entities may have a subset of policies. Specifying a policy that is not applicable to an entity will be ignored.

Response

200
application/json
Successfully updated the redaction entity.
id
string
required

The id of the redaction entity

Example:

"CREDIT_CARD_NUMBER"

description
string
required

The description of the redaction entity

Example:

""

policies
object
required

A set of policies that control when and how redaction is applied. Each policy can be enabled or disabled independently. Some entities may have a subset of policies. Specifying a policy that is not applicable to an entity will be ignored.