This API is used to delete an information leakage prevention rule.
DELETE /v1/{project_id}/waf/policy/{policy_id}/antileakage/{rule_id}
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
project ID |
policy_id |
Yes |
String |
Policy ID. It can be obtained by calling the ListPolicy API. |
rule_id |
Yes |
String |
ID of the information leakage protection rule. It can be obtained by calling the ListAntileakageRules API. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
X-Auth-Token |
Yes |
String |
auth token |
Content-Type |
No |
String |
Content type. Default: application/json;charset=utf8 |
Status code: 200
Parameter |
Type |
Description |
---|---|---|
id |
String |
Rule ID. |
url |
String |
URL to which the rule applies. |
category |
String |
Sensitive information type in the information leakage prevention rule.
Enumeration values:
|
contents |
Array of strings |
Content corresponding to the sensitive information type. Multiple options can be selected.
|
timestamp |
Long |
Timestamp the rule was created. |
description |
String |
Rule description. |
status |
Integer |
Rule status. The value can be:
Enumeration values:
|
Status code: 400
Parameter |
Type |
Description |
---|---|---|
error_code |
String |
Error code |
error_msg |
String |
Error message |
Status code: 401
Parameter |
Type |
Description |
---|---|---|
error_code |
String |
Error code |
error_msg |
String |
Error message |
Status code: 500
Parameter |
Type |
Description |
---|---|---|
error_code |
String |
Error code |
error_msg |
String |
Error message |
DELETE https://{Endpoint}/v1/{project_id}/waf/policy/{policy_id}/antileakage/{rule_id}?
Status code: 200
Request succeeded.
{ "id" : "82c4f04f84fd4b2b9ba4b4ea0df8ee82", "policyid" : "2fcbcb23ef0d48d99d24d7dcff00307d", "timestamp" : 1668152426471, "description" : "demo", "status" : 1, "url" : "/attack", "category" : "sensitive", "contents" : [ "id_card" ] }
Status Code |
Description |
---|---|
200 |
Request succeeded. |
400 |
Request failed. |
401 |
The token does not have required permissions. |
500 |
Internal server error. |
See Error Codes.