PUT
/
api
/
v2
/
blacklist
/
records
/
{ruleId}
update rule of blacklist.
curl --request PUT \
  --url https://apix.us.amity.co/api/v2/blacklist/records/{ruleId} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "ruleId": "<string>",
  "isEnabled": true
}'
{
  "status": "<string>",
  "data": {
    "ruleId": "<string>",
    "regex": "<string>",
    "isMatchExactWord": true,
    "isEnabled": true,
    "isDeleted": true,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

X-API-Key
string
header
required

Headers

Authorization
string
required
Content-Type
string
required

Path Parameters

ruleId
string
required

Rule ID to be updated.

Body

application/json

Rules information to be updated.

The body is of type object.

Response

200
application/json

rule of blacklist Information

The response is of type object.